闰年判断
如果年份能被400整除,则为闰年 如果年份能被4整除但不能被100整除也为闰年。
year = 2020
if year % 400 == 0:
print(f'{year} is leap year.')
elif year % 4 == 0 and year % 100 > 0:
print(f'{year} is leap year.')
else:
print(f'{year} is not leap year.')
**普通闰年:公历年份是4的倍数,且不是100的倍数的,为闰年(如2004年、2020年等就是闰年)。**
**世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年(如1900年不是闰年,2000年是闰年)。**