# coding=utf-8
import sched
import time
# 初始化sched模組的scheduler類
# 第乙個引數是乙個可以返回時間戳的函式,第二個引數可以在定時未到達之前阻塞。
s = sched.scheduler(time.time, time.sleep)
# enter四個引數分別為:間隔事件、優先順序(用於同時間到達的兩個事件同時執行時定序)、被呼叫觸發的函式,給他的引數(注意:一定要以tuple給如,如果只有乙個引數就(xx,))
defperform
(inc):
s.enter(inc, 0, perform, (inc,))
print
"current time:", time.time()
if __name__ == "__main__":
s.enter(0, 0, perform, (2,))
s.run()
import time
while
1<2:
print
'hello'
time.sleep(2)
python任務排程例項分析
方法1 import sched,time import os s sched.scheduler time.time,time.sleep scheduler的兩個引數用法複雜,程式設計客棧可以不做任何更改 def playmusic x os.system x def jobtodo tmlis...
Linux任務排程
任務排程 是指系統在某個時間執行的特定的命令或程度。任務排程分類 i.系統工作 有些重要的工作必須周而復始地執行。如病毒掃瞄等。ii.個別使用者工作 個別使用者可能希望執行某些程式。設定任務排程檔案 etc crontab 設定個人任務排程 crontab e 希望,每分去執行可以在crontab ...
crontab 任務排程
1 編輯crontab crontab u root e 5 home root zbb aaa.sh 2 檢視crontab crontab u root l 5 home mmroot zbb aaa.sh 作者主頁 3 cron 任務排程 etc crontab第1 列分鐘1 59 第2列小時...