測量Python 程式的執行時間
測量Python 程式執行的精確持續時間,特別是需要延長時間的命令列程式運行時,可以採用以下策略:
timeit 模組提供了一種對簡潔程式碼片段進行計時的有效方法。然而,對於整個程序的測量,請考慮採用更全面的解決方案:
import time # Capture the program's start time start_time = time.time() # Execute the program's main function main() # Calculate and display the execution time print("--- %s seconds ---" % (time.time() - start_time))
此方法取決於您的程式執行至少花費 0.1 秒的假設。此外,它以人類可讀的格式輸出執行時間,方便分析程式的效能:
--- 0.764891862869 seconds ---
以上是如何準確測量Python程式的執行時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!