本文介绍了Python dateutil.parser.parse首先解析月份,而不解析日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用dateutil.parser.parse
从字符串格式化日期.但是现在它混合了月份和日期.
I'm using dateutil.parser.parse
to format a date from a string. But now it mixes up the month and the day.
我有一个包含05.01.2015
的字符串.之后
I have a string that contains 05.01.2015
. After
dateutil.parser.parse("05.01.2015")
它返回:
datetime.datetime(2015, 5, 1, 0, 0)
我希望它会返回(2015, 1, 5, 0, 0)
如何告诉代码格式为dd.mm.yyyy
?
出于记录目的,按预期将25.01.2015
解析为(2015, 1, 25, 0, 0)
.
For the record, 25.01.2015
will be parsed as (2015, 1, 25, 0, 0)
, as expected.
推荐答案
指定dayfirst=True
:
>>> dateutil.parser.parse("05.01.2015", dayfirst=True)
datetime.datetime(2015, 1, 5, 0, 0)
在日期格式不明确的情况下(例如,当日期为12或更晚时),该格式优先于DD-MM-YYYY格式,而不是MM-DD-YYYY.在此处中记录了该功能.
This gives precedence to the DD-MM-YYYY format instead of MM-DD-YYYY in cases where the date format is ambiguous (e.g. when the day is 12 or lower). The function is documented here.
这篇关于Python dateutil.parser.parse首先解析月份,而不解析日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!