Python/Python 예제 코드2019. 8. 27. 13:25Python에서 코드 실행 시간 측정(perf_counter, process_time, timeit)
파이썬에서 코드 실행시간을 측정하는 방법을 찾아 테스트해보았습니다. 파이썬 3.3+ 이상부터 perf_counter와 process_time를 사용할 수 있는데 차이점은 다음과 같습니다. perf_counter는 sleep 함수를 호출하여 대기한 시간을 포함하여 측정합니다. process_time는 실제로 연산하는데 걸린 시간만 측정합니다. import time def process1(): start = time.perf_counter() time.sleep(1) return (time.perf_counter()-start) def process2(): start = time.process_time() time.sleep(1) return (time.process_time()-start) print('u..