【说站】python time库有哪些时钟
2024-12-13
21
python time库有哪些时钟
时钟说明
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电脑。
更新于:5天前赞一波!4
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python字符串中有哪些方法
- 【说站】python格式字符串是什么
- 【说站】python默认索引是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python序列操作的整理
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】js有哪些常用的数组api
- 【说站】python mktime()如何计算时间
- 【说站】python搜索模块如何查询
- 【说站】python如何定义索引模块类
文章评论
评论问答