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

<tfoot id='yNffD'></tfoot>

    • <bdo id='yNffD'></bdo><ul id='yNffD'></ul>

      <legend id='yNffD'><style id='yNffD'><dir id='yNffD'><q id='yNffD'></q></dir></style></legend>
    1. <small id='yNffD'></small><noframes id='yNffD'>

      1. 有没有功能来确定日期在一年中的哪个季度?

        Is there a function to determine which quarter of the year a date is in?(有没有功能来确定日期在一年中的哪个季度?)
          <tbody id='kp4Az'></tbody>

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

          <legend id='kp4Az'><style id='kp4Az'><dir id='kp4Az'><q id='kp4Az'></q></dir></style></legend>

              • <bdo id='kp4Az'></bdo><ul id='kp4Az'></ul>
                1. <i id='kp4Az'><tr id='kp4Az'><dt id='kp4Az'><q id='kp4Az'><span id='kp4Az'><b id='kp4Az'><form id='kp4Az'><ins id='kp4Az'></ins><ul id='kp4Az'></ul><sub id='kp4Az'></sub></form><legend id='kp4Az'></legend><bdo id='kp4Az'><pre id='kp4Az'><center id='kp4Az'></center></pre></bdo></b><th id='kp4Az'></th></span></q></dt></tr></i><div id='kp4Az'><tfoot id='kp4Az'></tfoot><dl id='kp4Az'><fieldset id='kp4Az'></fieldset></dl></div>
                  <tfoot id='kp4Az'></tfoot>
                2. 本文介绍了有没有功能来确定日期在一年中的哪个季度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我当然可以自己写,但是在我重新发明轮子之前,有没有函数已经这样做了?

                  推荐答案

                  给定xdatetime.date的实例,(x.month-1)//3将得到季度(第一季度为0,第二季度为1,以此类推--如果需要从1开始计数,则加1;-)。


                  原来有两个答案,倍增了,甚至是原来接受的(现在都删除了),都有问题--除法前不做-1,而是除以4而不是3。因为.month是1到12,所以很容易自己检查哪个公式是正确的:

                  for m in range(1, 13):
                    print m//4 + 1,
                  print
                  

                  给出1 1 1 2 2 2 2 3 3 3 3 4--两个四个月季度和一个单月季度(EEP)。

                  for m in range(1, 13):
                    print (m-1)//3 + 1,
                  print
                  

                  给予1 1 1 2 2 2 3 3 3 4 4 4--您现在看起来是不是非常喜欢这个?-)

                  我认为这证明这个问题是有根据的;-)。

                  我不认为DateTime模块应该具有每一个可能有用的日历函数,但我知道我维护了一个(经过良好测试的;-)datetools模块,用于我的(和其他人的)项目,它有许多小函数来执行所有这些日历计算--有些很复杂,有些很简单,但是没有理由反复做这些工作(即使是简单的工作),或者在这样的计算中冒错误的风险;-)。

                  这篇关于有没有功能来确定日期在一年中的哪个季度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)

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

                            <tbody id='O87vO'></tbody>

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

                            <legend id='O87vO'><style id='O87vO'><dir id='O87vO'><q id='O87vO'></q></dir></style></legend>