<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 - 将字符串中的日期与今天的日期进行比较

        时间:2023-11-07
          <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 - 将字符串中的日期与今天的日期进行比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:GUI 测试工具 PyUseCase 与 Dogtail 相比如何? 下一篇:将 Python 中的日期与 datetime 进行比较

                  相关文章

                    • <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>

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