日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python下timer定时器常用的两种实现方法

發布時間:2025/3/20 python 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python下timer定时器常用的两种实现方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

方法一,使用線程中現成的:

這種一般比較常用,特別是在線程中的使用方法,下面是一個例子能夠很清楚的說明它的具體使用方法:

import threading import time def fun_timer():print(time.strftime('%Y-%m-%d %H:%M:%S'))global timertimer = threading.Timer(2,fun_timer)timer.start(); timer = threading.Timer(1,fun_timer) timer.start(); time.sleep(5) timer.cancel() print(time.strftime('%Y-%m-%d %H:%M:%S'))

方法二,根據time中的來定義timer:

這種方法使用比較靈活,可根據自身的東西來添自身的需求:

''' 遇到問題沒人解答?小編創建了一個Python學習交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' import timeclass TimerError(Exception):"""A custom exception used to report errors in use of Timer class"""class Timer:def __init__(self):self._start_time = Nonedef start(self):"""Start a new timer"""if self._start_time is not None:raise TimerError(f"Timer is running. Use .stop() to stop it")self._start_time = time.perf_counter()def stop(self):"""Stop the timer, and report the elapsed time"""if self._start_time is None:raise TimerError(f"Timer is not running. Use .start() to start it")elapsed_time = time.perf_counter() - self._start_timeself._start_time = Noneprint(f"Elapsed time: {elapsed_time:0.4f} seconds")

總結

以上是生活随笔為你收集整理的python下timer定时器常用的两种实现方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。