1. ホーム

python reports an error AttributeError: module 'time' has no attribute 'clock' Solution

2022-02-10 05:47:03

ソースコードは以下の通りです。

#import the required time library
import datetime
import time
 
#Program timer, start timer
start = time.clock()
 
#In the middle is the program code where the test runtime needs to be placed
 
#Calculate the time difference between the start time and the end time
end = time.clock()
print('Run time : %s seconds'%(end-start))

レポートエラー AttributeError モジュール 'time' には属性 'clock' がありません。

回避策: python 3.8 はもう時計をサポートしていません。 時間.perf_counter() で置き換えることができます。