我收到以下错误:
时间数据' 2017-12-11 10:00:00'不符合格式' Y-m-d H:M:S'
格式化对我来说很完美。
这是我的代码:
start_date =' 2017-12-11 10:00:00-08:00' start_date = pytz.timezone(event.time_zone).localize(datetime.strptime(start_date [: - 6],' Y-m-d H:M:S'))
我错过了什么吗?
答案 0 :(得分:2)
你应该在你的casce中添加%
的日期占位符datetime.strptime(start_date[:-6],'%Y-%m-%d %H:%M:%S')