Skip to content

Commit 4e5a907

Browse files
author
balgowlah-deli
committed
Create leap_year_checker.py
1 parent 3ff0ad5 commit 4e5a907

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

leap_year_checker.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Python program to check if year is a leap year or not
2+
3+
year = 2000
4+
5+
# To get year (integer input) from the user
6+
year = int(input("Enter a year: "))
7+
8+
if (year % 4) == 0:
9+
if (year % 100) == 0:
10+
if (year % 400) == 0:
11+
print("{0} is a leap year".format(year))
12+
else:
13+
print("{0} is not a leap year".format(year))
14+
else:
15+
print("{0} is a leap year".format(year))
16+
else:
17+
print("{0} is not a leap year".format(year))
18+

0 commit comments

Comments
 (0)