编写函数isleap(year)
时间: 2023-06-23 08:08:07 浏览: 79
leap-year-c.rar_Leap!
函数isleap(year)的作用是判断给定的年份是否为闰年,如果是,则返回True,否则返回False。闰年的判断规则为:能被4整除但不能被100整除,或者能被400整除的年份是闰年。
以下是函数的代码实现:
```python
def isleap(year):
"""
判断给定的年份是否为闰年
"""
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
函数的用法示例:
```python
year = 2022
if isleap(year):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
输出结果为:
```
2022 不是闰年
```
阅读全文