1、轉化成時間格式
seconds =35400 m, s = divmod(seconds, 60) h, m = divmod(m, 60) print("%d:%02d:%02d" % (h, m, s))
結果:9:50:00
2、轉化成日期時間格式
import time timeArray = time.localtime(1462482700)#秒數 otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray) print(otherStyleTime)
