summaryrefslogtreecommitdiff
path: root/progs/dont_care/a309.py
blob: 84b0ac21e7e59603edcfae890dad255c9507242f (plain)
1
2
3
4
5
6
7
8
import datetime
def check_date(m, d, y):
    try:
        m, d, y = map(int, (m, d, y))
        datetime.date(y, m, d)
        return True
    except ValueError:
        return False