• 技术文章 >Python技术 >Python基础教程

    python time库有哪些时钟

    小妮浅浅小妮浅浅2021-08-10 09:28:54原创2188

    时钟说明

    1、monotonic测量长时间运行过程需要时间。

    因为即使系统时间发生变化,也能保证钟不会逆转。

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

    使短时间测量更加正确。

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

    4、time回到纪元以来的秒数。

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

    实例

    import time
     
    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 time库时钟的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python time
    上一篇:python动量交易策略的四个步骤 下一篇:python time.ctime()如何做时间加减法

    相关文章推荐

    • php中mktime()函数是什么• python中datetime和字符串之间如何转换• python中time模块的时间格式• python time模块处理系统时间的函数• python time模块是什么• java LocalTime如何使用• LocalDateTime在java中的使用

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网