- import tkinter as tk
- win = tk.Tk()
- win.title("主視窗")
- win.geometry("500x500")
- win.resizable(1, 1)
- lb = tk.Label(win, bg="black", fg="white", text="這是絕對位置,下面是相對位置。", font=("微軟正黑體", 16)).place(x=50, y=10)
- list1 = ["blue", "yellow", "red", "green"]
- n = 0
- x = 7
- for i in range(4):
- lb = tk.Label(win, bg=f"{list1[n]}").place(relx=0.5, rely=0.5, relwidth=f"0.{x}", relheight=f"0.{x}",
- anchor="center")
- n += 1
- x -= 2
- i += 1
- win.mainloop()
複製代碼 |