2 lines
73 B
Python
2 lines
73 B
Python
def is_leap_year(year):
|
|
return not year % (4 if year % 100 else 400)
|
def is_leap_year(year):
|
|
return not year % (4 if year % 100 else 400)
|