python中使用time模組計算代碼執行效率的精度測試)

來源:互聯網
上載者:User
  1. #python中使用time模組計算代碼執行效率  
  2. #測試用time.time()和time.clock()使用精度  
  3.   
  4. import sys  
  5. import time  
  6. import timeit  
  7. default_timer = None  
  8.   
  9. if sys.platform == "win32":  
  10. # On Windows, the best timer is time.clock()  
  11.     default_timer = time.clock  
  12. else:  
  13. # On most other platforms the best timer is time.time()  
  14.     default_timer = time.time  
  15. print  default_timer  
  16. timeIn= time.clock()  
  17. for i in range(100):  
  18.     n=i  
  19. timeUse = time.clock()-timeIn  
  20. print timeUse  
  21.   
  22. timeIn = time.time()  
  23. for i in range(100):  
  24.     n=i  
  25. timeUse = time.time()-timeIn  
  26. print timeUse  
  27.   
  28. timeIn = timeit.default_timer()  
  29. for i in range(100):  
  30.     n=i  
  31. timeUse = timeit.default_timer()-timeIn  
  32. print timeUse  
  33.   
  34.    
  35.   
  36. #該段代碼在windows下結果如下  
  37. >>>   
  38. 4.07873067161e-005  
  39. 0.0  
  40. 3.5758734839e-005  
  41.   
  42. #因為time.clock() 返回的是處理器時間,而因為 Unix 中 jiffy 的緣故,所以精度不會太高。  
  43. #因此,在Windows 系統中,建議使用 time.clock(),在Unix 系統中,建議使用 time.time(),  
  44. #而使用timeit代替 time,就可以實現跨平台的精度性,使用timeit.default_timer()函數來擷取時間 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.