📅  最后修改于: 2022-03-11 14:46:28.846000             🧑  作者: Mango
from tkinter import *
root = Tk()
root.title("Title of the GUI")
root.geometry("500x400") # (length x width)
root.pack()
root.mainloop()