📜  tkinter 样板 - Python 代码示例

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

代码示例1
import tkinter

window = tkinter.Tk()       # creating the window object
window.title('my first GUI program')
# write your code here

window.mainloop()           # keeping the window until we close it