python每天定时运行某程序代码

2018-06-14  本文已影响0人  gghxr
import time
while True:
    time_now = time.strftime("%H:%M:%S", time.localtime())  # 刷新
    if time_now == "15:30:10": #此处设置每天定时的时间

        # 此处3行替换为需要执行的动作
        print("hello")
        subject = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + " 定时发送测试"
        print(subject)

        time.sleep(2) # 因为以秒定时,所以暂停2秒,使之不会在1秒内执行多次


import time
while True:
    time_now = time.strftime("%S", time.localtime())  # 刷新
    if time_now == "10": #此处设置每天定时的时间

        # 此处3行替换为需要执行的动作
        print("hello")
        subject = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + " 定时发送测试"
        print(subject)

        time.sleep(2) # 因为以秒定时,所以暂停2秒,使之不会在1秒内执行多次


上一篇下一篇

猜你喜欢

热点阅读