python 毫秒时间戳转日期

匿名 (未验证) 提交于 2019-12-02 22:51:30

import time import datetime  timestamp = 1570774556514  # 转换成localtime time_local = time.localtime(timestamp/1000) # 转换成新的时间格式(精确到秒) dt = time.strftime("%Y-%m-%d %H:%M:%S", time_local) print(dt)   # 2019-10-11 14:15:56  d = datetime.datetime.fromtimestamp(timestamp/1000) # 精确到毫秒 str1 = d.strftime("%Y-%m-%d %H:%M:%S.%f") print(str1)  # 2019-10-11 14:15:56.514000 

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!