一定の間隔でコードを再帰的に実行する
特定のコード ブロックを定期的に実行することは、さまざまなプログラミング シナリオにおいて重要です。 Python にはスレッド モジュールが用意されており、これを使用すると、メイン プログラムと同時に実行されるスレッドを作成できます。このモジュールを使用して n 秒ごとにメッセージを出力するソリューションを次に示します。
import threading def printit(): # Schedule the next invocation of this function after n seconds threading.Timer(5.0, printit).start() # Execute the code print("Hello, World!") # Initiate the first call of the printit function printit() # Continue with the rest of your code
このコード内:
以上がPython でコードを定期的に再帰的に実行するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。