13位是毫秒时间戳
10位是秒时间戳。
import time
# 输入毫秒级的时间,转出正常格式的时间
def timeStamp(timeNum):
timeStamp = float(timeNum/1000)
timeArray = time.localtime(timeStamp)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print otherStyleTime
【1】在线时间转换工具:https://tool.lu/timestamp
【2】Python之time模块的时间戳、时间字符串格式化与转换(13位时间戳):https://blog.csdn.net/mighty13/article/details/78147357