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

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

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

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

        如何使用 Python 验证特定的日期和时间格式

        时间:2023-10-09
        1. <i id='lMEZt'><tr id='lMEZt'><dt id='lMEZt'><q id='lMEZt'><span id='lMEZt'><b id='lMEZt'><form id='lMEZt'><ins id='lMEZt'></ins><ul id='lMEZt'></ul><sub id='lMEZt'></sub></form><legend id='lMEZt'></legend><bdo id='lMEZt'><pre id='lMEZt'><center id='lMEZt'></center></pre></bdo></b><th id='lMEZt'></th></span></q></dt></tr></i><div id='lMEZt'><tfoot id='lMEZt'></tfoot><dl id='lMEZt'><fieldset id='lMEZt'></fieldset></dl></div>
          • <legend id='lMEZt'><style id='lMEZt'><dir id='lMEZt'><q id='lMEZt'></q></dir></style></legend>

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

              <tbody id='lMEZt'></tbody>
            • <bdo id='lMEZt'></bdo><ul id='lMEZt'></ul>
              <tfoot id='lMEZt'></tfoot>

                  本文介绍了如何使用 Python 验证特定的日期和时间格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在编写一个程序来验证 XML 文件的某些部分.我要验证的要点之一是日期时间格式.我已经在论坛上阅读了有关使用 time.strptime() 的信息,但是这些示例对我来说不太适用,并且超出了我的专业知识.任何人都知道如何验证以下内容.这是日期和时间必须采用的格式.

                  I am writing a program to validate portions of an XML file. One of the points I would like to validate is a Date Time format. I've read up on the forum about using time.strptime() but the examples weren't quite working for me and were a little over my expertise. Anyone have any ideas how I could validate the following. This is the format the date and time must be in.

                  2/26/2009 3:00 PM
                  

                  我确信有一些内置的并且非常简单,但我找不到.非常感谢您之前运行过此操作并提出建议.

                  I am sure there is something built-in and very easy but I can't find. Many thanks if you've run by this before and have suggestions.

                  推荐答案

                  是的,你可以使用 datetime.strptime():

                  Yes, you can use datetime.strptime():

                  from datetime import datetime
                  
                  
                  def validate_date(d):
                      try:
                          datetime.strptime(d, '%m/%d/%Y %I:%M %p')
                          return True
                      except ValueError:
                          return False
                  
                  
                  print validate_date('2/26/2009 3:00 PM')  # prints True
                  print validate_date('2/26/2009 13:00 PM')  # prints false
                  print validate_date('2/26/2009')  # prints False
                  print validate_date("Should I use regex for validating dates in Python?")  # prints False
                  

                  这篇关于如何使用 Python 验证特定的日期和时间格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Python 2.6+ str.format() 和正则表达式 下一篇:Matplotlib 在刻度标签(字符串)中显示美元符号

                  相关文章

                  最新文章

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

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

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

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