#!/usr/bin/env python
#coding=utf-8
import threading
def sayhello():
print "hello world"
global t #Notice: use global variable!
t = threading.Timer(5.0, sayhello)
t.start()
t = threading.Timer(5.0, sayhello)
t.start()
Python 定时器 timer
最新推荐文章于 2024-09-06 10:46:43 发布
本文介绍了一个简单的Python定时任务实现方案,通过使用 threading 模块的 Timer 类来周期性地执行 sayhello 函数,该函数会打印 'hello world' 并重新启动定时器以确保任务能够持续运行。

636

被折叠的 条评论
为什么被折叠?



