发布时间:2019-08-11 11:23:40编辑:auto阅读(1968)
开发过程中最常用的时间处理就是获取时间戳,获取当前日期,或者时间戳,日期互转,做个总结,免得总找不着。
1、获取当前timestamp
>>> from time import time >>> time()
1423023221.585132
2、获取当前日期
>>> from time import localtime,strftime,time
>>> strftime("%Y-%m-%d %H:%M:%S",localtime())'2015-02-04 12:13:07'
# 获取当前UTC时间
time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime())3、日期的计算
获取昨天的日期
>>> from time import localtime,strftime,time
>>> strftime("%Y-%m-%d %H:%M:%S",localtime(time()-60*60*24))'2015-02-03 12:14:21'
4、日期转时间戳
>>> from time import mktime,strptime
>>> mktime(strptime("2015-02-04 11:57:11","%Y-%m-%d %H:%M:%S"))1423022231.0
上一篇: python 对文件的操作
下一篇: python3使用ip代理池
51346
50809
41402
38203
32694
29586
28417
23303
23258
21590
1668°
2400°
2007°
1943°
2275°
1973°
2679°
4480°
4307°
3071°