epoch时间到datetime转换python

问题描述 投票:0回答:1

我正在使用python 3.6.2并尝试使用以下方法将epoch转换为datetime,

creation_date=time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(epoch)

我收到以下错误,

OSError: [Errno 22] Invalid argument

它'1535539535018'失败了。

python-3.x epoch
1个回答
0
投票

您应该确保您的纪元时间以秒为单位:

 time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(1535539535018/1000))
© www.soinside.com 2019 - 2024. All rights reserved.