一、Tkinter模块的基本使用

1)实例化窗口程序

import tkinter as tk
app = tk.Tk()
app.title("FishC Demo")
app.mainloop()
View Code

相关文章:

  • 2021-05-25
  • 2021-09-23
  • 2021-10-20
  • 2021-08-19
  • 2022-12-23
  • 2022-02-28
  • 2021-07-13
猜你喜欢
  • 2021-10-29
  • 2021-10-31
  • 2021-12-25
  • 2021-06-23
  • 2021-12-19
  • 2021-10-03
相关资源
相似解决方案