如何使用Python 實現秒錶功能?
其實python不是我們看到那麼複雜,如果打好紮實的基礎,我們可以用python做一些好玩的事情,比如實現秒錶功能,一起來看下把~
前言:
本文的重點是在python中使用Tkinter建立秒錶。
關於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
```java
#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 實現秒錶功能的全部內容了,如需瞭解更多python實用知識,點選進入PyThon學習網教學中心。
相關文章
- Boost StateChart實現狀態機----秒錶例程
- 同步秒殺實現:Redis在秒殺功能的實踐Redis
- python的爬蟲功能如何實現Python爬蟲
- JavaScript 秒錶效果JavaScript
- Golang 實現 Redis(5): 使用跳錶實現 SortedSetGolangRedis
- Win10系統怎麼開啟秒錶 win10系統秒錶的使用教程Win10
- python opencv如何實現目標區域裁剪功能PythonOpenCV
- 跳錶實現
- python如何使用字典實現switchPython
- 如何使用 Vue3 實現文章目錄功能Vue
- JavaScript 秒錶效果詳解JavaScript
- 如何用Python實現iPhone X的人臉解鎖功能?PythoniPhone
- python如何實現簡單的爬蟲功能?Python學習教程!Python爬蟲
- Redis 實現高併發下的搶購 / 秒殺功能Redis
- 大型PHP電商網站商品秒殺功能實現思路分析PHP網站
- 使用Webcam實現拍照功能Web
- 如何使用原生 JS 實現一個文字劃線功能JS
- 如何實現前端錄音功能前端
- javascript如何實現類的功能JavaScript
- 如何實現這樣的功能?
- Redis在秒殺功能的實踐Redis
- python版:單機redis實現秒殺,防止超限PythonRedis
- 【Java】Java計時器(秒錶)Java
- PHP 會話(Session)如何實現使用者登陸功能PHP會話Session
- https如何使用python+flask來實現HTTPPythonFlask
- 使用 jQuery 實現分頁功能jQuery
- 使用redis實現互粉功能Redis
- 使用VB實現OLE拖放功能
- PyQt實現鐘錶效果QT
- Python基於TCP實現聊天功能PythonTCP
- vue 日程表功能如何實現???Vue
- GoldenGate使用SQLEXEC和GETVAL實現碼錶關聯GoSQL
- 指令碼實現檢視錶空間使用情況指令碼
- Python實現人臉識別功能,face_recognition的使用 | 機器學習Python機器學習
- js秒錶效果程式碼例項JS
- 如何使用Python實現FTP伺服器?Python學習教程PythonFTP伺服器
- Go使用websocket實現彈幕功能GoWeb
- Yii使用DbTarget實現日誌功能