Python判断是否为闰年函数
时间: 2024-04-20 09:21:01 浏览: 74
python 判断闰年,简洁函数
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。
阅读全文