我有功能做一些工作.代码应重复1.3亿次.
目前,我使用Crontab每1分钟运行一个python脚本.这需要太长的时间,我希望这个python脚本在第一次运行时运行并不断重复,直到工作结束.我想在2个任务之间休息10秒.我怎样才能做到这一点?
尝试计划模块
import schedule import time def job(): print("I'm working...") schedule.every(10).minutes.do(job) schedule.every().hour.do(job) schedule.every().day.at("10:30").do(job) while 1: schedule.run_pending() time.sleep(1)
赶紧跑 : pip install schedule
我认为您应该使用此方法:
import time while True: # code goes here time.sleep(10)
实际上,使用它是不正确的,while True
因为它会导致无限循环。那边应该有条件。但是由于您没有提供足够的数据,所以我实际上无法做到这一点。