python判断是否为闰年,用函数
时间: 2023-06-16 11:06:35 浏览: 193
python 判断闰年,简洁函数
可以定义一个函数来判断某个年份是否为闰年,以下是一个示例代码:
```python
def is_leap_year(year):
"""
判断某个年份是否为闰年
"""
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
return True
else:
return False
```
这个函数接收一个年份作为参数,然后根据闰年的定义来判断是否为闰年。如果是闰年,则返回 True,否则返回 False。在判断闰年时,需要满足以下条件:
1. 能被 4 整除,但不能被 100 整除;
2. 能被 400 整除。
使用示例:
```python
print(is_leap_year(2020)) # True
print(is_leap_year(2021)) # False
```
阅读全文