Python3將時間戳轉(zhuǎn)換為指定格式日期
如何在Python3中將時間戳轉(zhuǎn)換為指定格式日期,首先給定一個時間戳,將其轉(zhuǎn)換為指定格式的時間。下面我們用幾個實例來獲取當(dāng)前時間和指定時間戳。
當(dāng)前時間
實例一
執(zhí)行以上代碼輸出結(jié)果為:
實例二
執(zhí)行以上代碼輸出結(jié)果為:
指定時間戳
實例三
執(zhí)行以上代碼輸出結(jié)果為:
實例四
執(zhí)行以上代碼輸出結(jié)果為:
import time
val = input('請輸入下載時間戳: ')
print(val)
time_start = 1072915200
result = time_start + int(val) #+ 548477434
print(result)
timeArray = time.localtime(result)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)
val =input("請在此輸入現(xiàn)在的時間戳: ")
print(val)
timeArray = time.localtime(int(val))
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)
*博客內(nèi)容為網(wǎng)友個人發(fā)布,僅代表博主個人觀點,如有侵權(quán)請聯(lián)系工作人員刪除。