python获取13位时间戳
Unix 时间戳根据精度的不同,有 10 位(秒级),13 位(毫秒级),16 位(微妙级)和 19 位(纳秒级)。平时我们在linux命令行下,使用date +%s返回的是一个10位的unix时间,而在常用的http的响应头里,我们经常会发现有13位的unix时间戳。在python下可以比较容易的获取10和13位的时间戳并转换成常见的时间格式。
一、10时间戳的使用和转换
1>>> import time
2>>> time.time()
31582173020.4462004
4>>> print(int(time.time()))
51582173022
强制转换是直接去掉小数位。转换为正常识别的时间可以使用如下命令:
1>>> time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(1582173022))
2'2020-02-20 12:30:22'
二、13位时间戳的使用与转换
13位的时间是毫秒级的, 由于默认time.time()返回是一个浮点数,我们将其扩大1000位再四舍五入取int值就可以了。实现方式如下:
1>>> int(round(time.time() * 1000))
21582173029387
同样可以参照上面的示例将期转换为可以正常识别的时间格式,如下:
1>>> import time
2>>> now = int(round(time.time()*1000))
3>>> now02 = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(now/1000))
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/python-unixtime13/6453.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.