python下timer定时器常用的两种实现方法
生活随笔
收集整理的這篇文章主要介紹了
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定时器常用的两种实现方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python编程4道练习题
- 下一篇: python删除指定文件夹下文件和文件夹