判断一个年份是否为闰年
时间: 2023-09-18 19:13:26 浏览: 93
the-kind-of-year.rar_The Year
判断一个年份是否为闰年的方法是:
1. 如果该年份能被4整除但不能被100整除,则是闰年;
2. 如果该年份能被400整除,则也是闰年;
3. 其他情况都不是闰年。
下面是一个 Python 代码示例:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
其中,`year` 是要判断的年份,函数返回 `True` 表示是闰年,返回 `False` 表示不是闰年。
阅读全文