我正在收到用户的日期输入。它作为字符串对象来到我身边,我无法对其进行任何操作。
我无法使用datetime库将我的字符串更改为datetime对象。
24th of May 2016 04:00
如何将此字符串转换为datetime
类型?
答案 0 :(得分:2)
尝试python-dateutil
,它会嚼掉那个没问题的字符串:
>>> from dateutil.parser import parse
>>> parse('24th of May 2016 04:00')
datetime.datetime(2016, 5, 24, 4, 0)