Python 官方文档:入门教程 => 点击学习
from datetime import datetime"""python日期时间到时间戳"""# 当前日期和时间now = datetime.now()timestamp = datetime.t
from datetime import datetime"""python日期时间到时间戳"""# 当前日期和时间now = datetime.now()timestamp = datetime.timestamp(now)print('时间戳:', timestamp)print('类型:', type(timestamp))# 10位的时间戳,精确到秒ts10 = str(timestamp).split('.')[0]print('10位时间戳:', ts10)# 13位的时间戳,精确到毫秒ts13 = str(timestamp*1000).split('.')[0]print('13位时间戳:', ts13)"""Python时间戳到日期时间"""timestamp = 1675042819.1232566dt1 = datetime.fromtimestamp(timestamp)print("时间戳转日期:", dt1)print("类型:", type(dt1))dt = datetime.fromtimestamp(int(ts10))print("10位时间戳转日期:", dt)
来源地址:https://blog.csdn.net/weixin_49026134/article/details/128797330
--结束END--
本文标题: 【Python】Python时间戳( timestamp)
本文链接: https://lsjlt.com/news/415248.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0