共计 406 个字符,预计需要花费 2 分钟才能阅读完成。
可以使用以下代码来判断一个年份是否为闰年:
def is_leap_year(year):
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
return True
else:
return False
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(year, "是闰年")
else:
print(year, "不是闰年")
这段代码定义了一个函数 is_leap_year(),该函数用于判断输入的年份是否为闰年。其中,使用了以下规则判断一个年份是否为闰年:
- 如果一个年份能被 4 整除,但不能被 100 整除,则为闰年;
- 如果一个年份能被 400 整除,则也为闰年;
- 其他情况都不是闰年。
在程序中,首先通过 input() 函数获取用户输入的年份,然后调用 is_leap_year() 函数判断该年份是否为闰年,并输出相应的结果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完