time库的基本介绍

time库是Python中处理时间的标准库
Python中包含了很多能够处理时间的库。而其中time库是最基本的一个。

  • 计算机时间的表达
  • 提供获取系统时间并格式化输出的方法
  • 能够提供系统级精确计时功能,用于程序性能分析

import time

time.< b>() 就OK

python time库函数 python中time库的引用_字符串

时间获取

python time库函数 python中time库的引用_python time库函数_02

表示1970年1月1日0:00开始到当前这一时刻的以秒为单位的数值。

python time库函数 python中time库的引用_python time库函数_03

time库中,获取人类译读方式时间的最简单的函数。

python time库函数 python中time库的引用_字符串_04

有了这三个函数,我们基本可以对获取来的世界做所有可能的后续处理。

时间格式化

是将时间以合理的方式展示出来的方法。

  • 格式化:类似字符串格式化,需要有展示模板
  • 展示模板由特定的格式化控制符组成
  • strftime方法
    有两个参数,第一个参数tpl是格式化的末班字符串,定义输出效果。第二个参数是计算机内部的时间类型的变量,gmtime函数输出的格式

python time库函数 python中time库的引用_Python_05

时间格式化很重要一点是将计算机内部时间中,表达的年月日时分秒等相关的,与时间有关的信息用一种变量的形式进行合理组合并合理输出。通过控制来表达输出格式。time库中有很多控制符

python time库函数 python中time库的引用_Python_06

python time库函数 python中time库的引用_时间格式化_07

python time库函数 python中time库的引用_字符串_08

python time库函数 python中time库的引用_Python_09

程序计时应用

程序计时应用广泛

  • 程序计时指测量起止动作所经历时间的过程
  • 测量时间:perf_counter()
  • 产生时间:sleep
单元小结

python time库函数 python中time库的引用_python time库函数_10