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

    1. <tfoot id='zeg1L'></tfoot>

      1. <small id='zeg1L'></small><noframes id='zeg1L'>

          <bdo id='zeg1L'></bdo><ul id='zeg1L'></ul>

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

        python - 将字符串中的日期与今天的日期进行比较

        python - compare the date in the string with today#39;s date(python - 将字符串中的日期与今天的日期进行比较)
          <legend id='okAp8'><style id='okAp8'><dir id='okAp8'><q id='okAp8'></q></dir></style></legend>
        • <small id='okAp8'></small><noframes id='okAp8'>

                <tbody id='okAp8'></tbody>
                <bdo id='okAp8'></bdo><ul id='okAp8'></ul>

              • <i id='okAp8'><tr id='okAp8'><dt id='okAp8'><q id='okAp8'><span id='okAp8'><b id='okAp8'><form id='okAp8'><ins id='okAp8'></ins><ul id='okAp8'></ul><sub id='okAp8'></sub></form><legend id='okAp8'></legend><bdo id='okAp8'><pre id='okAp8'><center id='okAp8'></center></pre></bdo></b><th id='okAp8'></th></span></q></dt></tr></i><div id='okAp8'><tfoot id='okAp8'></tfoot><dl id='okAp8'><fieldset id='okAp8'></fieldset></dl></div>
                <tfoot id='okAp8'></tfoot>
                  本文介绍了python - 将字符串中的日期与今天的日期进行比较的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  目标:

                  • 将字符串中的日期与今天的日期进行比较

                  问题:

                  • 得到这个错误:ValueError:未转换的数据仍然存在:12:00:00

                  问题:

                  • 如何解决该错误
                  • 如何删除字符串的时间元素?

                  代码

                  from datetime import date
                  from datetime import time
                  from datetime import datetime
                  
                  dateTimeStart = "2014-01-01 12:00:00"
                  
                  def main():
                      dateTime1 = datetime.strptime(dateTimeStart, "%Y-%m-%d")
                      today = date.today()
                  
                      if dateTime1 > "today":
                          print "No"
                  
                  if __name__ == "__main__":
                    main();
                  

                  推荐答案

                  还需要解析时间部分:

                  datetime.strptime(dateTimeStart, "%Y-%m-%d %H:%M:%S")
                  

                  然后你可以像这样比较你的日期:

                  Then you can compare your dates like this:

                  if dateTime1.date() > date.today():
                      print "No"
                  

                  date() 函数返回 datetime 对象的日期.

                  这篇关于python - 将字符串中的日期与今天的日期进行比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)

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

                            <tfoot id='ZydgO'></tfoot>
                              <tbody id='ZydgO'></tbody>

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