编写一个函数判断是否为输入数字为闰年,如果是输出yes
时间: 2024-03-03 22:50:32 浏览: 75
函数 判断一年是不是闰年
5星 · 资源好评率100%
好的,以下是一个 Python 编写的判断闰年的函数:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return "yes"
else:
return "no"
```
你可以传入一个年份作为参数,函数将返回字符串 "yes" 或 "no",表示该年份是否为闰年。比如:
```python
>>> is_leap_year(2020)
'yes'
>>> is_leap_year(2021)
'no'
```
希望能够帮到你!
阅读全文