import tkinter as tk my_w = tk.Tk() my_w.geometry("300x200") l1 = tk.Label(my_w, text='row=1,column=1 ') l1.grid(row=1,column=1) l2 = tk.
確定! 回上一頁