解决Pycharm中程序完成的运行时间的显示
一、导入time库,并在整个程序运行前设置开始时间
import time
start = time.clock()
1
2
3
二、在整个程序运行末尾设置程序完成时间
end = time.clock()
1
2
三、打印末尾时间减去开始时间,即可显示运行耗时
print("运行耗时", end-start)
1
2
设置后,代码运行耗时显示
————————————————
版权声明:本文为CSDN博主「最早的早安227」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/JasonZ227/article/details/109549418
Python3.8不再支持time.clock()
如果使用Python3.8,可以这样使用time库
import time
start = time.perf_counter()
end = time.perf_counter()
print("运行耗时", end-start)
————————————————
(以上内容是改文章下ID为‘-借我杀死庸碌的情怀-’的评论。)