我在 Python 中有以下字符串 - 'Oct 01 2013 07 30 PM EST'。我正在尝试转换为 datetime 对象,但出现以下错误:
ValueError: time data 'Oct 01 2013 07 30 PM EST' does not match format
'%b %d %Y %I %M %p %Z'
不知道我哪里错了!请帮忙。我的代码如下:
from datetime import datetime
date_object = datetime.strptime(str(date), '%b %d %Y %I %M %p %Z')