from tkinter import * root = Tk() for i in range(5): Label(root, text=str(i), relief=GROOVE).pack(fill=BOTH, expand=True) root.mainloop().
確定! 回上一頁