Python: Count the Running Time
作者:XD / 发表: 2021年7月7日 13:17 / 更新: 2021年7月7日 13:17 / 编程笔记 / 阅读量:1826
Count the code running time with the following Python lines.
import time
start = time.time()
# code start here
#
# code end here
end = time.time()
run_time = round(end-start, 2)
print(run_time)
相关标签