Python timer定时器两种常用方法解析

作者:虚生 时间:2023-07-21 19:20:56 

这篇文章主要介绍了Python timer定时器两种常用方法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

方法一,使用线程中现成的:

这种一般比较常用,特别是在线程中的使用方法,下面是一个例子能够很清楚的说明它的具体使用方法:


#! /usr/bin/python3
#! -*- conding: utf-8 -*-
import threading
import time
def fun_timer():
 print(time.strftime('%Y-%m-%d %H:%M:%S'))
 global timer
 timer = 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:

这种方法使用比较灵活,可根据自身的东西来添自身的需求:


import time

class TimerError(Exception):
 """A custom exception used to report errors in use of Timer class"""

class Timer:
 def __init__(self):
   self._start_time = None

def 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_time
   self._start_time = None
   print(f"Elapsed time: {elapsed_time:0.4f} seconds")

来源:https://www.cnblogs.com/dylancao/p/12213235.html

标签:Python,timer,定时,器
0
投稿

猜你喜欢

  • 如何实现某些页面只让特定的用户浏览?

    2010-05-19 21:42:00
  • Django设置Postgresql的操作

    2021-10-23 09:59:56
  • 解析MySQL join查询的原理

    2024-01-17 13:28:46
  • SQL 2008的变更数据捕获——跟踪可变部分

    2009-03-20 11:47:00
  • pandas实现DataFrame显示最大行列,不省略显示实例

    2023-10-27 14:08:52
  • python3+PyQt5 创建多线程网络应用-TCP客户端和TCP服务器实例

    2021-01-14 10:20:29
  • python 三边测量定位的实现代码

    2023-02-03 08:37:31
  • Golang调用FFmpeg转换视频流的实现

    2024-04-30 10:01:43
  • CI框架整合smarty步骤详解

    2023-11-14 11:18:11
  • JavaScript实现简易购物车最全代码解析(ES6面向对象)

    2024-04-16 10:40:11
  • python实现双链表

    2022-06-20 01:47:48
  • Apache2 httpd.conf 中文版

    2023-10-28 04:19:38
  • golang并发安全及读写互斥锁的示例分析

    2024-02-13 14:21:45
  • django2.2安装错误最全的解决方案(小结)

    2022-06-14 20:37:19
  • python私有属性和方法实例分析

    2023-11-21 06:16:13
  • Python实现同时兼容老版和新版Socket协议的一个简单WebSocket服务器

    2023-05-21 10:05:28
  • JDBC连接集群数据库的方法

    2024-01-24 14:29:57
  • 在MAC上搭建python数据分析开发环境

    2022-04-27 21:44:10
  • Go事务中止时是否真的结束事务解析

    2023-07-07 11:35:35
  • 页面新开窗口的一点补充

    2008-09-10 12:57:00
  • asp之家 网络编程 m.aspxhome.com