能被4整除却不能被100整除或能被400整除的年份是闰年.编写一个函数,能判断年份n是否是闰年,并调用该函数判断输入的年份是否为闰年。 测试输入: 2021 预期输出: False 测试输入: 2020 预期输出: True`
时间: 2023-10-23 16:33:37 浏览: 91
好的,以下是实现代码:
```python
# 编写一个函数判断年份是否是闰年
def isLeapYear(n):
return (n % 4 == 0 and n % 100 != 0) or (n % 400 == 0)
# 调用函数判断输入的年份是否为闰年
year = int(input('请输入年份:'))
if isLeapYear(year):
print(year, '是闰年')
else:
print(year, '不是闰年')
```
测试输入1:
```
2021
```
预期输出1:
```
2021 不是闰年
```
测试输入2:
```
2020
```
预期输出2:
```
2020 是闰年
```
请问还有其他问题需要我回答吗?
相关问题
Python编写函数,判断一个年份是否为闰年(年份数能被4整除但不能被100整除,或者能被400整除)
可以使用以下代码实现:
```python
def is_leap_year(year):
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
return True
else:
return False
```
该函数接受一个年份作为参数,返回一个布尔值,指示该年份是否为闰年。如果年份能被4整除但不能被100整除,或者能被400整除,则表示该年份是一个闰年,返回True;否则返回False。
根据闰年的定义,能被4整除不能被100整除的或能被400整除的为闰年,根据此编写函数,应用if语句来实现判断一个读入的年份是否是闰年
以下是 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
```
函数`is_leap_year`接受一个年份作为参数,使用 if 语句嵌套来实现判断是否是闰年。首先,判断是否能被 4 整除,如果不能,直接返回 False;如果能,再接着判断是否能被 100 整除,如果能,再判断是否能被 400 整除,如果能,则返回 True,否则返回 False;如果不能,直接返回 True。
示例使用:
```python
year = 2020
if is_leap_year(year):
print(f"{year} is a leap year.")
else:
print(f"{year} is not a leap year.")
```
输出:
```
2020 is a leap year.
```
阅读全文