Python計算程式執行時間?

如何計算python程式的執行時間呢?下面我來介紹一下。

Python計算程式執行時間

工具/原料

python

方法/步驟

import time

Python計算程式執行時間

start =time.clock()

Python計算程式執行時間

#執行程式,比如計算1到100的和。

sum=0

for i in range(1,101):

sum=sum+i

print(sum )

Python計算程式執行時間

end = time.clock()

print('Running time: %s Seconds'%(end-start))#其中end-start就是程式執行的時間,單位是秒。

Python計算程式執行時間

#全部程式如下

import time

start =time.clock()

sum=0

for i in range(1,101):

sum=sum+i

print(sum )

end = time.clock()

print('Running time: %s Seconds'%(end-start))

#輸出結果

Python計算程式執行時間

注意事項

請按照自己的程式修改

相關問題答案