您现在的位置是:课程教程文章

python怎么设置每隔几秒执行脚本?

2023-12-18 18:43课程教程文章 人已围观

python设置每隔几秒执行脚本的方法:

1、利用python死循环实现每10s执行一次脚本

#!/usr/bin/env python
import os,time
#how to run it?
#nohup python -u example.py >> /data/logs/example.log 2>&1 &
while True:
        os.system('command')//执行系统命令
        time.sleep(10)//推迟执行、休眠

2、设置1-10s执行一次脚本

#!/usr/bin/env python
import os,time,random
#how to run it?
#nohup python -u example.py >> /data/logs/example.log 2>&1 &
while True:
        sleeptime=random.randint(0, 10)//1-10随机数
        os.system('command')
        time.sleep(sleeptime)

更多Python知识请关注Python自学网。

课程教程:python怎么设置每隔几秒执行脚本?

上一篇:python里os是什么意思?

下一篇:没有了

站点信息

  • 文章统计篇文章