2022年11月16日 星期三

Python GUI EX1.3 , 1.4

# ch1_3.py

from tkinter import *


root = Tk()

root.configure(bg='#00ff00')    # 視窗背景顏色

root.iconbitmap("mystar.ico")   # 更改圖示

root.mainloop()



# ch1_4.py

from tkinter import *


root = Tk()

root.geometry("300x160+400+200")     # 距離螢幕左上角(400,200)

root.mainloop()



沒有留言:

張貼留言

Messaging API作為替代方案

  LINE超好用功能要沒了!LINE Notify明年3月底終止服務,有什麼替代方案? LINE Notify將於2025年3月31日結束服務,官方建議改用Messaging API作為替代方案。 //CHANNEL_ACCESS_TOKEN = 'Messaging ...