时间:2021-07-01 10:21:17 帮助过:139人阅读
# encoding: UTF-8 import threading #Timer(定时器)是Thread的派生类, #用于在指定时间后调用一个方法。 def func(): print 'hello timer!' timer = threading.Timer(5, func) timer.start()
该程序可实现延迟5秒后调用func方法的功能。
希望本文所述对大家的Python程序设计有所帮助。
< 上一篇
Python读写文件方法总结
下一篇 >
Python计算一个文件里字数的方法
记住我的登录 忘记密码?
登录
我已阅读用户协议及版权声明
注册