티스토리 뷰

Tip and Error/Python

시간 측정

geonwoopaeng@gmail.com 2020. 8. 24. 22:55

<시간 측정법>

#1.
import time 

start = time.time() #시간 시작 

# ...
# source code
# ...

end = time.time() #시간 끝 

total_time = end - time #source code 시간
print(total_time)  



#2.
import timeit 

start = timeit.default_timer() 

# ...
# source code
# ...

end = timeit.default_timer() 

total_time = end - time #source code 시간
print(total_time)  

 

결국 total_time 이 0.304020234234 이면 

=> source code가 0.3초 걸린다. 

 

 

 

 

< 참고 자료>

https://www.ics.uci.edu/~pattis/ICS-33/lectures/complexitypython.txt

반응형

'Tip and Error > Python' 카테고리의 다른 글

DP 풀 때  (0) 2020.08.27
deque (collections 모듈)  (0) 2020.08.27
None 반환  (0) 2020.08.24
slice 범위  (0) 2020.08.24
조건문 사용 주의  (0) 2020.08.24
공지사항
최근에 올라온 글