因此,在 Python 3 中,您可以使用 .isoformat() 生成 ISO 8601 日期,但无法将 isoformat() 创建的字符串转换回 datetime 对象,因为 Python 自己的 datetime 指令不正确匹配。也就是说,%z = 0500 而不是 05:00(由 .isoformat() 生成)。
例如:
>>> strDate = d.isoformat()
>>> strDate
'2015-02-04T20:55:08.914461+00:00'
>>> objDate = datetime.strptime(strDate,"%Y-%m-%dT%H:%M:%S.%f%z")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python34\Lib\_strptime.py", line 500, in _strptime_datetime
tt, fraction = _strptime(data_string, format)
File "C:\Python34\Lib\_strptime.py", line 337, in _strptime
(data_string, format))
ValueError: time data '2015-02-04T20:55:08.914461+00:00' does not match format '%Y-%m-%dT%H:%M:%S.%f%z'
来自 Python 的 strptime 文档:(https://docs.python.org/2/library/datetime.html#strftime-strptime-behavior)
%z UTC 偏移量,格式为 +HHMM 或 -HHMM(如果对象是幼稚的,则为空字符串)。(空),+0000,-0400,+1030
因此,简而言之,Python 甚至不遵守自己的字符串格式化指令。
我知道 datetime 在 Python 中已经很糟糕了,但这确实超出了不合理的范围,进入了愚蠢的境地。
告诉我这不是真的。