year = int(input('请输入年份'))
is_leap = (year % 4 == 0 and year % 100 != 0 or year % 400 == 0)
print(is_leap)
year = int(input('请输入年份'))
is_leap = (year % 4 == 0 and year % 100 != 0 or year % 400 == 0)
print(is_leap)
671

被折叠的 条评论
为什么被折叠?