你知道Python stuct_time 中模块如何使用整理提供N多种吗?以下的文章就是通过对Python stuct_time 中模块如何操作时间的函数的相关代码去体现其的实际应用方案,以下是文章的介绍。
一、Python stuct_time中模块使用整理提供了各种操作时间的函数。一般有两种表示的方式:
***种:以时间戳的方式(相对于1970.1.1 00:00:00 以秒计算的偏移量),时间戳是惟一
第二种:以数组的形式表示即(struct_time), 共有九个元素,分别表示,同一个时间戳的stuct_time会因为时区不同而不同。
时区:夏令时区与UTC时区函数介绍:
- asctime()
- asctime([tuple]) -> string
将一个Python struct_time 转换成字符串clock()该函数有两个功能:在***次调用的时候,返回的是程序运行的实际时间;(返回整个程序的总运行时间值),以第二次之后的调用,返回的是自***次调用后,到这次调用的时间间隔。示例:
- import time
- if __name__ == '__main__':
- time.sleep(1)
- print "clock1:%s" % time.clock()
- time.sleep(1)
- print "clock1:%s" % time.clock()
- time.sleep(1)
- print "clock1:%s" % time.clock()
输出:
- clock1:3.07301626324e-006
- clock1:0.997576228264
- clock1:1.99513653272
- 1.1.3 sleep(seconds)
线程推迟指定的时间运行,经过测试,单位为秒
- ctime(seconds)
- ctime(seconds) -> string
将一个时间戳Python stuct_time(默认为当前时间)转换成一个时间字符串.示例:
- if __name__ == '__main__':
- print time.ctime()
输出:
- Thu Mar 04 12:55:03 2010
- 1.1.5 gmtime(...)
- gmtime([seconds]) -> (tm_year, tm_mon, tm_day,
tm_hour, tm_min,tm_sec, tm_wday, tm_yday, tm_isdst)
9个参数值)将一个时间戳转换成一个UTC时区(0时区)的struct_time,如果seconds参数未输入,则以当前时间为转换标准(数组类型的时间值)示例:
- if __name__ == '__main__':
- print time.gmtime()
时间元组输出:
- (2010, 3, 4, 4, 58, 53, 3, 63, 0)
返回的就是一个数组类型的数据。其中的含义分别为:
- (tm_year, tm_mon, tm_day, tm_hour, tm_min,tm_sec, tm_wday, tm_yday, tm_isdst)
得到一个数组之后就可以这样分割:print time.gmtime()[0] 得到***个元素值
【编辑推荐】
- Python socket编程在具体应用中前两个步骤的介绍
- 用python pylint检查相关东西的操作方案详解
- Python入门的相对路径和绝对路径详解
- Python环境的实际应用方案介绍与代码详解
- Python数据结构创建的具体应用方案详解