如何在Python3中将时间戳转换为指定格式日期,首先给定一个时间戳,将其转换为指定格式的时间。下面我们用几个实例来获取当前时间和指定时间戳。
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("请在此输入现在的时间戳: ")
print(val)
timeArray = time.localtime(int(val))
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)