Python stuct_time中模块如何操作时间函数的方案

开发 后端
一下的文章就是对Python stuct_time中模块如何操作时间的函数的两种表现方式,以下是相关内容的介绍,希望你会有所收获。

 你知道Python stuct_time 中模块如何使用整理提供N多种吗?以下的文章就是通过对Python stuct_time 中模块如何操作时间的函数的相关代码去体现其的实际应用方案,以下是文章的介绍。

一、Python stuct_time中模块使用整理提供了各种操作时间的函数。一般有两种表示的方式:

***种:以时间戳的方式(相对于1970.1.1 00:00:00 以秒计算的偏移量),时间戳是惟一

第二种:以数组的形式表示即(struct_time), 共有九个元素,分别表示,同一个时间戳的stuct_time会因为时区不同而不同。

时区:夏令时区与UTC时区函数介绍:

  1. asctime()  
  2. asctime([tuple]) -> string    

 

将一个Python struct_time 转换成字符串clock()该函数有两个功能:在***次调用的时候,返回的是程序运行的实际时间;(返回整个程序的总运行时间值),以第二次之后的调用,返回的是自***次调用后,到这次调用的时间间隔。示例:

 

  1. import time  
  2. if __name__ == '__main__':  
  3. time.sleep(1)  
  4. print "clock1:%s" % time.clock()  
  5. time.sleep(1)  
  6. print "clock1:%s" % time.clock()  
  7. time.sleep(1)  
  8. print "clock1:%s" % time.clock()   

 

输出:

 

  1. clock1:3.07301626324e-006  
  2. clock1:0.997576228264  
  3. clock1:1.99513653272   
  4. 1.1.3 sleep(seconds)  

 

线程推迟指定的时间运行,经过测试,单位为秒

  1. ctime(seconds)  
  2. ctime(seconds) -> string  

将一个时间戳Python stuct_time(默认为当前时间)转换成一个时间字符串.示例:

 

  1. if __name__ == '__main__':  
  2. print time.ctime()  

 

输出:

  1. Thu Mar 04 12:55:03 2010  
  2. 1.1.5 gmtime(...)  
  3. 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参数未输入,则以当前时间为转换标准(数组类型的时间值)示例:

 

  1. if __name__ == '__main__':  
  2. print time.gmtime()   

时间元组输出:

 

  1. (2010, 3, 4, 4, 58, 53, 3, 63, 0) 

 

返回的就是一个数组类型的数据。其中的含义分别为:

 

  1. (tm_year, tm_mon, tm_day, tm_hour, tm_min,tm_sec, tm_wday, tm_yday, tm_isdst) 

 

得到一个数组之后就可以这样分割:print time.gmtime()[0] 得到***个元素值

【编辑推荐】

  1. Python socket编程在具体应用中前两个步骤的介绍
  2. 用python pylint检查相关东西的操作方案详解
  3. Python入门的相对路径和绝对路径详解
  4. Python环境的实际应用方案介绍与代码详解
  5. Python数据结构创建的具体应用方案详解
       
     

 

责任编辑:佚名 来源: 互联网
相关推荐

2010-03-16 18:59:47

Python模块

2023-12-22 08:38:02

Pythondatetimetime

2010-03-16 10:00:37

Python函数

2010-03-16 20:27:52

Python模块

2010-03-31 19:34:03

Oracle数据库

2024-07-12 10:00:00

time模块Python

2010-03-17 10:58:47

Python学习笔记

2010-03-17 12:53:43

Python Libr

2021-03-07 08:46:54

Java时间操作Joda-Time

2023-06-05 16:41:27

Python开发

2023-01-05 16:36:55

2010-03-11 19:45:09

Python逻辑

2020-10-15 17:38:00

Time Wheel

2010-09-06 14:17:04

SQL函数

2010-03-17 13:33:04

Python Libr

2010-03-23 18:38:26

Python os.m

2010-03-15 15:38:47

Python运行

2010-04-21 13:21:24

Oracle时间

2010-03-26 11:00:55

Python嵌入CC++

2010-03-23 17:53:46

Python递归文件
点赞
收藏

51CTO技术栈公众号