Python

[파이썬] 시간 측정하기

bornsoon 2024. 9. 21. 12:58
import time

start = time.time()

# 측정할 코드

print(time.time() - start)
728x90