time.sleep()이라는 함수를 이용해서 프로그램을 원하는 시간(초)동안 정지시킬 수 있다. import time print(time.time()) time.sleep(5) print(time.time()) 1603299754.9303198 1603299759.930472 Process finished with exit code 0 * time.time() : 1970년 1월 1일 0시 0분 0초 부터 경과한 시간(초). 현재도 계속 흐르고 있다.