관리 메뉴

개발이야기

[ Python Skill ] 파이썬 프로그램 실행 시간 측정하기 본문

Python /Python Skill

[ Python Skill ] 파이썬 프로그램 실행 시간 측정하기

안성주지몬 2019. 6. 11. 00:00

이번 포스팅에서는 파이썬 프로그램의 실행시간을 측정하는 코드에 대해서 알아보도록 하겠습니다.

 

How do I get time of a Python program's execution?

 

 

- 코드 

import time
start_time = time.time()
your_program()  # 여러분의 코드를 넣어주시면 됩니다.
print("--- %s seconds ---" % (time.time() - start_time, 2))

 

- 코드 설명 

start_time 변수에 현재 시간 (unixtime)을 넣어줍니다.

이후 프로그램이 끝난후 시간에서 start_time을 빼주면 프로그램이 실행된 시간을 측정할 수 있습니다.

 

참고

[1] https://stackoverflow.com/questions/1557571/how-do-i-get-time-of-a-python-programs-execution

 

How do I get time of a Python program's execution?

I have a command line program in Python that takes a while to finish. I want to know the exact time it takes to finish running. I've looked at the timeit module, but it seems it's only for small

stackoverflow.com

 

Comments