-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.13.py
executable file
·41 lines (36 loc) · 1023 Bytes
/
7.13.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Program to confirm whether gien data is valid
def leapYear(year):
if year % 4 == 0:
if year % 100 == 0:
if year % 400 != 0:
return False
else:
return True
else:
return True
else:
return False
def main():
print("Date Validator\n")
print("Enter date using format MM/DD/YEAR")
month, day, year = input("Date(MM/DD/YEAR): ").split("/")
month = int(month)
day = int(day)
year = int(year)
# special case for February in leap years
if month == 2:
if leapYear(year):
if day > 29:
print("Invalid date")
elif day > 28:
print("Invalid date")
# months that have 30 days
elif month == 4 or month == 6 or month == 9 or month == 11:
if day > 30:
print("Invalid date")
# rest of months
elif month > 12 or day > 31:
print("Invalid date")
else:
print("This is a valid date")
main()