日期字符串迄今Python

时间:2019-06-19 13:41:41

标签: python-3.x

我正在尝试将此字符串:'2017-02-28T23:00:00.000Z'解析为python datetime对象。

我的代码是

SwiftUI

我收到以下错误:

ev_begin_date = datetime.datetime.strptime('2017-02-28T23:00:00.000Z','%Y-%M-%dT%H:%M:%S.%Z' )

我在做什么错了?

1 个答案:

答案 0 :(得分:2)

尝试一下:

ev_begin_date = datetime.datetime.strptime('2017-02-28T23:00:00.000Z','%Y-%m-%dT%H:%M:%S.%fZ' )

已修复:

  • 您最初也使用%M作为月份。应该是%m
  • 毫秒部分为%fZ为文字(出现在字符串中)

您可以查看strptime's docs以获得所有格式选项的完整参考