用Python写一个判断闰年
时间: 2023-05-17 21:03:06 浏览: 92
python 闰年判断器
可以使用以下代码来判断一个年份是否为闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
return True
else:
return False
```
其中,如果一个年份能被4整除但不能被100整除,或者能被400整除,那么它就是闰年。
阅读全文