반응형
코드의 실행 시간을 측정하는 방법
import time
if __name__ == "__main__":
start = time.time()
tmp = list()
for i in range(0,100000):
tmp.append(i)
print("Interval Time : {:.8f} sec".format(time.time() - start))
728x90
'SW' 카테고리의 다른 글
[Python] pypubsub으로 Pub-Sub 메시지 보내보기 (0) | 2023.08.06 |
---|---|
[토막] Python decorator (0) | 2023.07.27 |
C++ Singleton pattern with template (0) | 2023.06.09 |
C/C++ 프로그램에 빌드시간 찍어놓기 : __TIME__, __DATE__ (0) | 2023.06.07 |
디버깅 꿀팁 : Macro to call a function @ C/C++ (0) | 2023.06.02 |