将datetime转换为timestamp python

时间:2018-08-29 00:14:20

标签: python-3.x time datestamp

我需要你的帮助。 我已经解析了一个网站,并且收获了这一点:

2018-08-18T23:31:00

我进行了搜索,但找不到如何将日期时间更改为时间戳

我想要的结果示例:

1535414693077

1 个答案:

答案 0 :(得分:0)

上一个答案是错误的,因为有时日期时间中没有'%s'格式化程序,即使它起作用了。有关使用'%s'有多错误,请参见this answer

from datetime import datetime
import pytz
pytz.utc.localize(datetime.strptime('2018-08-18T23:31:00', '%Y-%m-%dT%H:%M:%S')).timestamp()

输出(浮动):1534635060.0