我在python脚本中有以下代码:
def fun():
#Code here
fun()
我要执行此脚本,还要找出执行几分钟所需的时间。我如何找出执行此脚本需要多少时间?一个例子将不胜感激。
5
搜索“ python函数计时”的第一击:daniweb.com/software-development/python/code/216610
—
Piskvor在
您也可以使用cProfile。给您单独计时每个功能的选项
—
Adam Rosenthal