2009年10月14日水曜日

タイマー

threadingモジュールのTimerオブジェクトを使う

import threading

def hello():
    print "hello"

timer = threading.Timer(2, hello)

timer.start()

startした2秒後にhelloと表示される
1回実行して終わり
繰り返し実行はされない

詳細はドキュメントで

0 件のコメント:

コメントを投稿