<bdo id='h9io2'></bdo><ul id='h9io2'></ul>
    1. <tfoot id='h9io2'></tfoot>

      <i id='h9io2'><tr id='h9io2'><dt id='h9io2'><q id='h9io2'><span id='h9io2'><b id='h9io2'><form id='h9io2'><ins id='h9io2'></ins><ul id='h9io2'></ul><sub id='h9io2'></sub></form><legend id='h9io2'></legend><bdo id='h9io2'><pre id='h9io2'><center id='h9io2'></center></pre></bdo></b><th id='h9io2'></th></span></q></dt></tr></i><div id='h9io2'><tfoot id='h9io2'></tfoot><dl id='h9io2'><fieldset id='h9io2'></fieldset></dl></div>

      <legend id='h9io2'><style id='h9io2'><dir id='h9io2'><q id='h9io2'></q></dir></style></legend>
    2. <small id='h9io2'></small><noframes id='h9io2'>

        Python dateutil.parser.parse 首先解析月份,而不是日期

        Python dateutil.parser.parse parses month first, not day(Python dateutil.parser.parse 首先解析月份,而不是日期)

        <small id='ijj80'></small><noframes id='ijj80'>

        <i id='ijj80'><tr id='ijj80'><dt id='ijj80'><q id='ijj80'><span id='ijj80'><b id='ijj80'><form id='ijj80'><ins id='ijj80'></ins><ul id='ijj80'></ul><sub id='ijj80'></sub></form><legend id='ijj80'></legend><bdo id='ijj80'><pre id='ijj80'><center id='ijj80'></center></pre></bdo></b><th id='ijj80'></th></span></q></dt></tr></i><div id='ijj80'><tfoot id='ijj80'></tfoot><dl id='ijj80'><fieldset id='ijj80'></fieldset></dl></div>

          <tbody id='ijj80'></tbody>

        <legend id='ijj80'><style id='ijj80'><dir id='ijj80'><q id='ijj80'></q></dir></style></legend>
              <bdo id='ijj80'></bdo><ul id='ijj80'></ul>

                • <tfoot id='ijj80'></tfoot>
                • 本文介绍了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 首先解析月份,而不是日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                • <tfoot id='aoGkL'></tfoot>

                      • <legend id='aoGkL'><style id='aoGkL'><dir id='aoGkL'><q id='aoGkL'></q></dir></style></legend>

                        <small id='aoGkL'></small><noframes id='aoGkL'>

                        <i id='aoGkL'><tr id='aoGkL'><dt id='aoGkL'><q id='aoGkL'><span id='aoGkL'><b id='aoGkL'><form id='aoGkL'><ins id='aoGkL'></ins><ul id='aoGkL'></ul><sub id='aoGkL'></sub></form><legend id='aoGkL'></legend><bdo id='aoGkL'><pre id='aoGkL'><center id='aoGkL'></center></pre></bdo></b><th id='aoGkL'></th></span></q></dt></tr></i><div id='aoGkL'><tfoot id='aoGkL'></tfoot><dl id='aoGkL'><fieldset id='aoGkL'></fieldset></dl></div>
                          <tbody id='aoGkL'></tbody>
                          <bdo id='aoGkL'></bdo><ul id='aoGkL'></ul>