python-判断闰年
时间: 2024-04-07 13:27:07 浏览: 63
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
```
这个方法中,首先判断年份能否被4整除,如果可以,则继续判断是否能被100整除,如果能被100整除,则再判断是否能被400整除。如果能被400整除,则是闰年;如果不能被400整除,则不是闰年。如果不能被4整除,则不是闰年。
阅读全文