정기적인 간격으로 코드를 재귀적으로 실행
특정 코드 블록을 주기적으로 실행하는 것은 다양한 프로그래밍 시나리오에서 매우 중요할 수 있습니다. 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!