2022年11月16日 星期三

Python GUI 標籤 Label ---- EX2.3 , 2.4 , 2.5 , 2.6 , 2.6.1

 # ch2_3.py

from tkinter import *

root = Tk()

root.title("ch2_3")

label=Label(root,text="I like tkinter",

            fg="blue",bg="yellow")

label.pack()  

root.mainloop()





# ch2_4.py
from tkinter import *

root = Tk()
root.title("ch2_4")
label=Label(root,text="I like tkinter",
            fg="blue",bg="yellow",
            height=3,width=15)
label.pack()  

root.mainloop()



# ch2_5.py
from tkinter import *

root = Tk()
root.title("ch2_5")
label=Label(root,text="I like tkinter",
            fg="blue",bg="yellow",
            height=3,width=15,
            anchor="nw")
label.pack()  

root.mainloop()






# ch2_6.py
from tkinter import *

root = Tk()
root.title("ch2_6")
label=Label(root,text="I like tkinter",
            fg="blue",bg="yellow",
            height=3,width=15,
            anchor="se")
label.pack()  

root.mainloop()






# ch2_6_1.py
from tkinter import *

root = Tk()
root.title("ch2_6_1")
label=Label(root,text="I like tkinter",
            fg="blue",bg="yellow",
            height=3,width=15,
            anchor=SE)
label.pack()  

root.mainloop()






沒有留言:

張貼留言

2026 作業3 RFID+ Telegram 練習

 2026 作業3  RFID+ Telegram  練習 (Wokwi 與 Telegram 二者溝通訊息反映比較慢 ) 歡迎 Alex 使用 RFID 控制系統 /on : 開啟 LED /off : 關閉 LED /flash : 閃爍模式 /timer : 開啟 5 秒 ...