判断年份是不是闰年python程序
时间: 2023-09-21 21:11:00 浏览: 142
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
```
这个函数接受一个年份作为参数,如果年份是闰年,则返回 True,否则返回 False。
使用方法:
```python
print(is_leap_year(2020)) # True
print(is_leap_year(2021)) # False
```
阅读全文