为什么这个datetime.datetime.strptime示例不起作用?

时间:2017-03-24 03:58:33

标签: python datetime

这看起来非常简单,但我无法弄清楚它失败的原因:

import datetime
datetime.datetime.strptime('Thu Feb 09 12:18:29 2012', '%a %b %d %X %Y')

失败
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/_strptime.py", line 325, in _strptime
    (data_string, format))
ValueError: time data 'Thu Feb 09 12:18:29 2012' does not match format '%a %b %d %X %Y'

据我所知the docs,这是一个完全准确的函数用法。我错过了什么?我正在运行Python 2.7。

0 个答案:

没有答案