import tkinter as tk window=tk.Tk() window.title('my window') window.geometry('500x600') tk.Label(window,text='top').pack(side='top')
確定! 回上一頁