共计 453 个字符,预计需要花费 2 分钟才能阅读完成。
Python 中判断闰年的计算方法如下:
def is_leap_year(year):
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
return True
else:
return False
else:
return True
else:
return False
year = int(input(" 请输入年份:"))
if is_leap_year(year):
print(f"{year}年是闰年 ")
else:
print(f"{year}年不是闰年 ")
以上代码中,我们定义了一个 is_leap_year()
函数,该函数接收一个年份作为参数,通过嵌套的 if-else 语句来判断是否是闰年。
具体判断逻辑如下:
- 如果年份能被 4 整除,继续判断下一步;
- 如果年份能被 100 整除,再判断是否能被 400 整除,如果能被 400 整除,则为闰年,否则不是闰年;
- 如果年份不能被 100 整除,则为闰年。
最后,我们根据用户输入的年份调用 is_leap_year()
函数来判断是否是闰年,并输出结果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完