学习网站

Posted 神雕爱大侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习网站相关的知识,希望对你有一定的参考价值。

python开发中用到,定时操作。例如每隔1s执行一次,发现  threading.Timer,这个东西,可以直接用。

其原理为执行函数中置定时函数Timer(),递归调用自己,看来实现方法比较拙劣。

import threading
import time

def fun_timer():
    print("hello timer!")
    # 定义全局变量
    global timer1
    # 1秒调用函数一次
    timer1 = threading.Timer(1, fun_timer)
    # 启用定时器
    timer1.start()


fun_timer()

time.sleep(10)

timer1.cancel() #取消执行

 

结果 :
/usr/local/bin/python3  ThreadingTimer.py
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!
hello timer!

Process finished with exit code 0

 

以上是关于学习网站的主要内容,如果未能解决你的问题,请参考以下文章

超级有用的9个PHP代码片段

html 将以编程方式附加外部脚本文件的javascript代码片段,并按顺序排列。用于响应式网站,其中ma

Wordpress阻止访问wp admin€“wpsnipp.com网站你博客的Wordpress代码片段

如何在 Reactjs 中添加丰富的代码片段?

IOS开发-OC学习-常用功能代码片段整理

java SpringRetry学习的代码片段