Python time clock()方法
Python time clock()方法
Python 3.8 已移除 clock() 方法 可以使用 time.perf_counter() 或 time.process_time() 方法替代。
Python time clock() 函數(shù)以浮點數(shù)計算的秒數(shù)返回當前的CPU時間。用來衡量不同程序的耗時,比time.time()更有用。
這個需要注意,在不同的系統(tǒng)上含義不同。在UNIX系統(tǒng)上,它返回的是"進程時間",它是用秒表示的浮點數(shù)(時間戳)。而在WINDOWS中,第一次調(diào)用,返回的是進程運行的實際時間。而第二次之后的調(diào)用是自第一次調(diào)用以后到現(xiàn)在的運行時間。(實際上是以WIN32上QueryPerformanceCounter()為基礎(chǔ),它比毫秒表示更為精確)
語法
clock()方法語法:
time.clock()
參數(shù)
- NA。
返回值
該函數(shù)有兩個功能,
在第一次調(diào)用的時候,返回的是程序運行的實際時間;
以第二次之后的調(diào)用,返回的是自第一次調(diào)用后,到這次調(diào)用的時間間隔
在win32系統(tǒng)下,這個函數(shù)返回的是真實時間(wall time),而在Unix/Linux下返回的是CPU時間。
實例
以下實例展示了 clock()函數(shù)的使用方法:
#!/usr/bin/python import time def procedure(): time.sleep(2.5) # measure process time t0 = time.clock() procedure() print time.clock() - t0, "seconds process time" # measure wall time t0 = time.time() procedure() print time.time() - t0, "seconds wall time"
以上實例輸出結(jié)果為:
3.3e-05 seconds process time 2.50329995155 seconds wall time
相關(guān)文章
- Python 基礎(chǔ)語法
- Python 運算符
- Python 詞典
- Python 矩陣
- Python 二叉樹
- Python3 if else 語句
- Python exp() 函數(shù)
- Python choice() 函數(shù)
- Python File readlines() 方法
- Python File truncate() 方法
- Python os.closerange() 方法
- Python os.rmdir() 方法
- Python os.utime() 方法
- Python isdigit()方法
- Python ljust()方法
- Python maketrans()方法
- Python startswith()方法
- Python List remove()方法
- Python 字典 Dictionary copy()方法
- Python Tuple 元組 cmp()方法