码迷,mamicode.com
首页 > 编程语言 > 详细

python 定时任务的执行

时间:2017-10-16 12:22:26      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:ftime   else   coding   sys   obj   chdir   test   while   定时   

#coding=utf-8
import os,time
k=1
while k <2:
  now_time=time.strftime(‘%H_%M‘)
  if now_time == ‘21_00‘:
    print u"开始运行脚本:"
    os.chdir("E:\\test_object")
    os.system(‘Python all_test.py‘) #执行脚本
    print u"运行完成退出"
    break
  else:
    time.sleep(10)
    print now_time

python 定时任务的执行

标签:ftime   else   coding   sys   obj   chdir   test   while   定时   

原文地址:http://www.cnblogs.com/czb529514/p/7676074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!