Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 2.7に、3600秒などの特定の時間だけコードを実行する方法があるかどうかを知りたいです。時間は、実行ごとに異なる可能性があります。私はこの問題に悩まされているので、どんなアイデアでも大歓迎です。
何らかの理由で計算を中断できるようにするには:
def compute_something(stopped): while not stopped: # continue computations stopped = [] threading.Timer(3600, stopped.append, args=[True]).start() compute_something(stopped)