编程语言
首页 > 编程语言> > python – 二月份的Dateutil解析器没有解析

python – 二月份的Dateutil解析器没有解析

作者:互联网

参见英文答案 > Python dateutil.parser throws “ValueError: day is out of range for month”                                    2个
我在python中得到一个非常奇怪的bug.

from dateutil import parser
string = "March 2008"
parser.parse(string)
 datetime.datetime(2008, 3, 30, 0, 0)
string = "February 2008"
parser.parse(string)

Traceback(最近一次调用最后一次):

File “”, line 1, in
File “/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.py”, line 697, in parse
return DEFAULTPARSER.parse(timestr, **kwargs)
File “/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.py”, line 310, in parse
ret = default.replace(**repl)
ValueError: day is out of range for month

我知道我可以在我的字符串中添加一天以使解析器工作,但我不知道为什么dateutil在没有2月份的情况下不起作用,而它每隔一个月都有效.

解决方法:

这是一个有趣的.

来自dateutil.parser:

    def parse(self, timestr, default=None,
                ignoretz=False, tzinfos=None,
                **kwargs):
    if not default:
        default = datetime.datetime.now().replace(hour=0, minute=0,
                                                  second=0, microsecond=0)

基本上,如果您不提供一天,任何缺少一天的日期字符串将默认为当天.实际情况是今天的第30天,当然是2月没有.这可能被视为dateutil中的错误.

标签:python-dateutil,python,datetime
来源: https://codeday.me/bug/20190830/1769357.html