能被4整除却不能被100整除或能被400整除的年份是闰年.编写一个函数,能判断年份n是否是闰年,并调用该函数使用False和True判断输入的年份是否为闰年。 测试输入: 2021 预期输出: False 测试输入: 2020 预期输出: True`
时间: 2023-10-23 21:33:38 浏览: 102
好的,以下是实现代码:
```python
# 编写一个函数判断年份是否是闰年
def isLeapYear(n):
return (n % 4 == 0 and n % 100 != 0) or (n % 400 == 0)
# 调用函数判断输入的年份是否为闰年
year = int(input('请输入年份:'))
if isLeapYear(year):
print(True)
else:
print(False)
```
测试输入1:
```
2021
```
预期输出1:
```
False
```
测试输入2:
```
2020
```
预期输出2:
```
True
```
请问还有其他问题需要我回答吗?
相关问题
能被4整除却不能被100整除或能被400整除的年份是闰年.编写一个函数,能判断年份n是否是闰年,并调用该函数判断输入的年份是否为闰年。 测试输入: 2021 预期输出: False 测试输入: 2020 预期输出: True`
好的,我可以帮你编写这个函数。以下是Python代码实现:
```python
def is_leap_year(n):
if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0:
return True
else:
return False
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
你可以在控制台中输入一个年份,函数会自动判断该年份是否是闰年,并输出判断结果。例如,输入2021时,输出False;输入2020时,输出True。
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。
阅读全文