time datetime

Posted Howhy Blogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了time datetime相关的知识,希望对你有一定的参考价值。

时间有三种格式:struct_time(tuple) 时间戳 时间字符串

time.time() #距1970到现在的时间戳 多少秒

将时间戳转为struct_time: time.gtime(time.time())  为UTC时间 time.localtime()为UTC时间 两者参数为时间戳(秒)

x=time.localtime()#time.struct_time(tm_year=2017, tm_mon=4, tm_mday=3, tm_hour=12, tm_min=23, tm_sec=18, tm_wday=0, tm_yday=93, tm_isdst=0)

取struct_time中的年月日等结果 x.tm_year  x.tm_yday

将struct_time转为字符串时间time.strftime("%Y-%m-%d %H:%M:%S",time.localtime()) time.strftime(‘时间格式‘,struct_time)

将字符串时间格式转为struct_time  time.strptime(‘2017-04-04 12:23:12‘,‘%Y-%m-%d %H:%M:%S‘)

将时间戳转为字符串:time.ctime(time.time())

 

以上是关于time datetime的主要内容,如果未能解决你的问题,请参考以下文章

MySQL日期类型

图解Python时间和日期time和datetime数据类型转换

python常用时间处理方法

org.joda.time.localdate 获得某个月有多少天

python时间函数的使用

Sql日期类型