Python使用strptime解析-月日时:分:秒时区-与格式不匹配

时间:2019-01-02 18:17:52

标签: python datetime strptime

我在使用Python的(datetime.datetime.strptime)解析“ Mar 3 03:00:04 2019 GMT”时遇到问题。我不知道是什么问题。起初我以为是因为当天不是零填充,但是根据文档,我发现情况并非如此。

import datetime
datetime.datetime.strptime("%b  %d %H:%M:%S %Y %Z", "Mar  3 03:00:04 2019 GMT")

我尝试删除空格并将其添加到格式字符串。我也尝试过没有时区说明符的情况。我要解析的格式来自ssl套接字方法getpeercert

ValueError                                Traceback (most recent call last)
<ipython-input-14-a9f4aa24cc39> in <module>
----> 1 datetime.datetime.strptime("%b  %d %H:%M:%S %Y %Z", "Mar  3 03:00:04 2019 GMT")

/usr/lib/python3.7/_strptime.py in _strptime_datetime(cls, data_string, format)
    575     """Return a class cls instance based on the input string and the
    576     format string."""
--> 577     tt, fraction, gmtoff_fraction = _strptime(data_string, format)
    578     tzname, gmtoff = tt[-2:]
    579     args = tt[:6] + (fraction,)

/usr/lib/python3.7/_strptime.py in _strptime(data_string, format)
    357     if not found:
    358         raise ValueError("time data %r does not match format %r" %
--> 359                          (data_string, format))
    360     if len(data_string) != found.end():
    361         raise ValueError("unconverted data remains: %s" %

ValueError: time data '%b  %d %H:%M:%S %Y %Z' does not match format 'Mar  3 03:00:04 2019 GMT'

我应该使用什么正确的格式字符串?

2 个答案:

答案 0 :(得分:1)

您需要翻转args,即:

import datetime
datetime.datetime.strptime("Mar  3 03:00:04 2019 GMT", "%b  %d %H:%M:%S %Y %Z")

答案 1 :(得分:1)

?- foo([[car],[house],[man]], X).
X = [c, h, m].

确切的语法应如上所述。更改参数的顺序会起作用。

datetime.datetime.strptime(date_string, format)