我正在使用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'失败了。
您应该确保您的纪元时间以秒为单位:
time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(1535539535018/1000))