Python判断是否为闰年函数
时间: 2024-04-20 16:21:01 浏览: 81
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。
相关问题
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
```
python判断是否为闰年
判断一个年份是否为闰年,可以使用以下的逻辑:
- 如果该年份能被4整除但不能被100整除,则为闰年。
- 如果该年份能被400整除,则为闰年。
以下是Python代码示例:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
该代码定义了一个名为`is_leap_year`的函数,接受一个`year`参数表示年份,返回一个布尔值表示该年份是否为闰年。函数内部通过上述逻辑进行判断,并返回结果。
阅读全文