這篇文章給大家分享的是有關使用Python實現秒表功能的方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
關于Tkinter:
Tkinter是Python的標準GUI庫。Python與Tkinter結合使用時,提供了一種創建GUI應用程序的快速而簡單的方法。Tkinter為Tk GUI工具包提供了一個強大的面向對象接口。Tkinter很容易入門,下面是一些示例代碼,可以讓您在python中使用Tkinter。
語法:
# Python program to create a # a new window using Tkinter # importing the required libraires import tkinter # creating a object 'top' as instance of class Tk top = tkinter.Tk() # This will start the blank window top.mainloop()
輸出:
使用Tkinter創建秒表
現在讓我們嘗試使用Tkinter模塊創建一個程序來創建秒表。
所需模塊:我們將僅使用tkinter來創建gui,并且此程序中將不使用其他任何庫。
# Python program to illustrate a stop watch # using Tkinter #importing the required libraries import tkinter as Tkinter counter = -1 running = False def counter_label(label): def count(): if running: global counter # To manage the intial delay. if counter==-1: display="Starting..." else: display=str(counter) label['text']=display # Or label.config(text=display) # label.after(arg1, arg2) delays by # first argument given in milliseconds # and then calls the function given as second argument. # Generally like here we need to call the # function in which it is present repeatedly. # Delays by 1000ms=1 seconds and call count again. label.after(1000, count) counter += 1 # Triggering the start of the counter. count() # start function of the stopwatch def Start(label): global running running=True counter_label(label) start['state']='disabled' stop['state']='normal' reset['state']='normal' # Stop function of the stopwatch def Stop(): global running start['state']='normal' stop['state']='disabled' reset['state']='normal' running = False # Reset function of the stopwatch def Reset(label): global counter counter=-1 # If rest is pressed after pressing stop. if running==False: reset['state']='disabled' label['text']='Welcome!' # If reset is pressed while the stopwatch is running. else: label['text']='Starting...' root = Tkinter.Tk() root.title("Stopwatch") # Fixing the window size. root.minsize(width=250, height=70) label = Tkinter.Label(root, text="Welcome!", fg="black", font="Verdana 30 bold") label.pack() start = Tkinter.Button(root, text='Start', width=15, command=lambda:Start(label)) stop = Tkinter.Button(root, text='Stop', width=15, state='disabled', command=Stop) reset = Tkinter.Button(root, text='Reset', width=15, state='disabled', command=lambda:Reset(label)) start.pack() stop.pack() reset.pack() root.mainloop()
輸出:
感謝各位的閱讀!關于使用Python實現秒表功能的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。