📜  python tkinter 框架标题 - Python 代码示例

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

代码示例1
from tkinter import *

root = Tk()
root.title("Title of the GUI")
root.geometry("500x400") # (length x width)
root.pack()
root.mainloop()