Answers for "check the input format of a date python"

1

check the input format of a date python

>>> import datetime
>>> def validate(my_str_date):
    try:
        datetime.datetime.strptime(my_str_date, '%Y-%m-%d')
    except ValueError:
        raise ValueError("Incorrect data format, should be YYYY-MM-DD")
        

>>> validate('2003-12-23')
>>> validate('2003/12/23')

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 5, in validate
ValueError: "Incorrect data format, should be YYYY-MM-DD"
Posted by: Guest on April-05-2021

Code answers related to "check the input format of a date python"

Python Answers by Framework

Browse Popular Code Answers by Language