import tkinter as tk #建視窗 myWindow=tk.Tk() myWindow.geometry("300x100") #製作標籤、放置標籤 myLabel=tk.Label(text="標籤") myLabel.pack()
確定! 回上一頁