赞
踩
from tkinter import *mytk=Tk()mytk.title("hello python")mytk.geometry("800x800+600+0")#参数分别代表,长,宽,x y坐标mytk.mainloop()#运行起来