📜  打开 gui 窗口 python 代码示例

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

代码示例1
import tkinter #no need to install
root = tkinter.Tk() #Tk() not tk()
root.geometry('50x50+0+0') #window h and w and position
#: widthxheight+space to left + space to right
root.mainloop()