共计 436 个字符,预计需要花费 2 分钟才能阅读完成。
判断一个年份是否为闰年的常见方法是:如果该年份能被 4 整除且不能被 100 整除,或者能被 400 整除,则该年份为闰年。
以下是一个判断闰年的 Python 程序代码:
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
的函数,该函数接受一个年份作为参数。函数内部使用了 if 语句判断了年份是否满足闰年的条件,如果满足则返回 True,否则返回 False。
然后通过 input
函数获取用户输入的年份,并将其转换为整数类型。最后使用 if 语句调用 is_leap_year
函数判断该年份是否为闰年,并输出相应的结果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完