📌  相关文章
📜  如何制作 tkinter 窗口 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:58.856000             🧑  作者: Mango

代码示例4
#!/usr/bin/python

import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()