Tkinter的實例應用1

實例1: import tkinter as tk app=tk.Tk() app.title('FishC Demo!') theLabel=tk.Label(app,text='我的第二個窗口程序!') theLabel.pack() #pack用於自動調節組件自身的尺寸 app.mainloop() #mainloop是進入主事件循環 運行結果: 實例2: 運行結果:   強化一步: 運行結
相關文章
相關標籤/搜索