1. 程式人生 > 其它 >json裡面的日期資料的值是一串數字,把它換回日期格式

json裡面的日期資料的值是一串數字,把它換回日期格式

技術標籤:python

在這裡插入圖片描述
如上圖,這種格式是數字,現在需要把它換回日期格式
就用下面的程式碼:

import time
time1=1610032387

otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time1))
print(otherStyleTime)