import tkinter#创建主窗口win = tkinter.Tk()#设置标题win.title("sunck")#设置大小和位置win.geometry("400x400+200+20")#进入消息循环win.mainloop()