1. 程式人生 > >Python time模組只clock在Python3.3廢棄,在Python3.8中將被移除

Python time模組只clock在Python3.3廢棄,在Python3.8中將被移除

Python time模組只clock在Python3.3廢棄,在Python3.8中將被移除

在Python3.7中使用 time.clock()報警告

DeprecationWarning: time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead

time.clock()

用以浮點數計算的秒數返回當前的CPU時間,用來衡量不同程式的耗時,比time.time()更有用

python3.3以後不被推薦使用,該方法依賴作業系統,建議使用per_counter(返回系統執行時間)或

process_time(返回程序執行時間)代替