time函数库python,time库是python中处理时间的标准库

  time函数库python,time库是python中处理时间的标准库

  时钟说明

  1.单调测量需要较长的运行时间。

  因为即使系统时间变了,也能保证时钟不会倒转。

  2.perf_counter允许访问最高可用分辨率的时钟。

  使短时测量更加准确。

  3.process_time返回处理器时间和系统时间的组合结果。

  4.时间回到纪元后的秒数。

  UNIX系统从1970年1月1日开始00:00。

  实例

  进口时间

  print(time.monotonic())

  print(time.monotonic_ns())

  print(time.perf_counter())

  print(time.perf_counter_ns())

  print(time.process_time())

  print(time.process_time_ns())

  print(time.time())

  Print(time.time_ns())以上是python时间库clock的介绍。希望对你有帮助。更多python学习方向:Python基础课程

  本教程运行环境:windows7系统,Python 3.9.1,DELL G3电脑。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: