728x90
반응형
질문 : 파이썬에서 시간 지연을 어떻게 만들 수 있습니까?
파이썬 스크립트에 시간 지연을 넣는 방법을 알고 싶습니다.
답변
import time
time.sleep(5) # Delays for 5 seconds. You can also use a float value.
다음은 대략 1 분에 한 번 무언가가 실행되는 또 다른 예입니다.
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
출처 : https://stackoverflow.com/questions/510348/how-can-i-make-a-time-delay-in-python
728x90
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
파이썬 return vs return None vs no return at all (0) | 2021.12.05 |
---|---|
함수 내부의 정적 변수에 해당하는 Python (0) | 2021.12.05 |
파이썬의 목록에서 고유 한 값 얻기 (0) | 2021.12.04 |
Python의 matplotlib 설치 문제 (0) | 2021.12.04 |
파이썬 두 딕셔너리를 결합하는 방법 (0) | 2021.12.04 |