import threading def hello(): print "hello" timer = threading.Timer(2, hello) timer.start()
startした2秒後にhelloと表示される
1回実行して終わり
繰り返し実行はされない
詳細はドキュメントで
import threading def hello(): print "hello" timer = threading.Timer(2, hello) timer.start()
OSはUbuntu 9.04
PythonはPython 2.6.2
0 件のコメント:
コメントを投稿