PracticeDev/study_python/gui/pygui.py

7 lines
91 B
Python

#!/usr/bin/python3
import tkinter
top = tkinter.Tk()
# 进入消息循环
top.mainloop()