반응형
코드 짠김에 정리한다.
import time
time.sleep(60) # 1분간 sleep
time.sleep(10) # 10초간 sleep
time.sleep(1) # 1초간 sleep
sleep 이 초 단위라는 것만 기억하면된다.
javascript는 1000이 1초다.
setInterval(test, 3000);
-끝-
728x90
반응형
'프로그래밍' 카테고리의 다른 글
[파이썬-문법] print 활용 옵션 정리(sep=, end=, format, escape, raw string, f-string) (0) | 2022.05.26 |
---|---|
[에러잡기] 파이썬 WindowsError: [Error 2] (0) | 2022.05.25 |
[파이썬 에러잡기] TypeError: string indices must be integers, IndexError: string index out of range 에러 해결 (0) | 2022.05.23 |
파이썬 피들러 같이 쓰기, fiddler와 python requests 모듈 같이 사용 (0) | 2022.05.23 |
[python3] 문자열 특수문자 처리, base64 인코딩, ASCII, utf-8 에러 관련 (0) | 2022.05.23 |