📅  最后修改于: 2020-10-30 00:53:29             🧑  作者: Mango
闰年:
如果一年中包含的额外天数使该年的天数为366,则称为is年。在2月中添加的这一天增加了29天。
每4年发生一次年。
如何确定一年是否为闰年?
您应按照以下步骤确定一年是否为闰年。
请参阅以下示例:
year = int(input("Enter a year: "))
if (year % 4) == 0:
if (year % 100) == 0:
if (year % 400) == 0:
print("{0} is a leap year".format(year))
else:
print("{0} is not a leap year".format(year))
else:
print("{0} is a leap year".format(year))
else:
print("{0} is not a leap year".format(year))
输出: