📅  最后修改于: 2022-03-11 14:45:44.595000             🧑  作者: Mango
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