PracticeDev/study_python/gui/pygui.py

7 lines
91 B
Python
Raw Permalink Normal View History

2023-08-23 15:02:00 +08:00
#!/usr/bin/python3
import tkinter
top = tkinter.Tk()
# 进入消息循环
top.mainloop()