用python写出判断年份是否为闰年的代码
时间: 2024-04-13 19:31:01 浏览: 141
py代码-判断年份是否闰年
当然可以!以下是一个简单的 Python 代码来判断一个年份是否为闰年:
```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(year, "是闰年")
else:
print(year, "不是闰年")
```
你可以将要判断的年份作为输入,然后运行这段代码来判断该年份是否为闰年。代码中的函数 `is_leap_year()` 接受一个年份作为参数,并返回 True 或 False 来表示是否为闰年。
阅读全文