【python日用】用python做定时任务 多久执行一次

话不多说,直接上代码:

import os,time
count =0
os.chdir(r'd:\slpworkspace\github\')
while count < 10:
        os.system('cmd')#执行系统命令
        time.sleep(100)#推迟执行、休眠
        count +=1

你可能感兴趣的:(python日用,python)