Python 官方文档:入门教程 => 点击学习
随机sleep sleeptime=random.randint(0, 300) time.sleep(sleeptime) 以下为转载Http://hi.baidu.com/liuhelishuang/item/1f8cd8
随机sleep
sleeptime=random.randint(0, 300)
time.sleep(sleeptime)以下为转载Http://hi.baidu.com/liuhelishuang/item/1f8cd8f75bd246dd6325d28c
import os
import time
def fun(name):
write_name="command %s failed!\n" % name
print write_name
f = open('/tmp/cs.log','a')
f.write(write_name)
f.close()
def tary(name):
print "the command is %s" % name
command_id = os.system(name)
while command_id != 0:
fun(name)
time.sleep(10)
command_id = os.system(name)
time.sleep(5)
tary("reboot")
具体方法是time.sleep(秒数),其中“秒数”以秒为单位,可以是小数,0.1秒则代表休眠100毫秒。
# 例1:循环输出休眠1秒--结束END--
本文标题: python sleep函数 随机
本文链接: https://lsjlt.com/news/188834.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0