8 lines
201 B
Python
8 lines
201 B
Python
def is_leap_year(year):
|
|
if (year % 4 == 0):
|
|
if (year % 100 == 0):
|
|
if (year %400 == 0):
|
|
return True
|
|
return False
|
|
return True
|
|
return False
|