python查看程序运行具体时间

模块 通过模块可以对python进行扩展
引入time模块 来统计程序执行的时间

from time import time
begin = time() # 获取程序开始的时间
# your code 
end = time()  # 获取程序结束的时间
print('程序执行花费了:',end-begin)

你可能感兴趣的:(Python,time,模块)