用Python写一个判断是不是闰年的代码
时间: 2023-05-18 19:04:22 浏览: 104
可以使用以下代码来判断是否为闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
return True
else:
return False
```
其中,如果返回 True,则表示是闰年,否则为平年。
相关问题
用Python写一个判断是否是闰年的完整代码
在Python中,判断一个年份是否为闰年的标准通常有两种情况:
1. 能够被4整除的年份是闰年;
2. 但是能被100整除的年份不是闰年,除非它也能被400整除。
以下是完整的Python代码示例:
```python
def is_leap_year(year):
"""
判断给定年份是否为闰年
:param year: 需要判断的年份
:return: 如果是闰年返回True,否则返回False
"""
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
return True
else:
return False
else:
return True
else:
return False
# 测试函数
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(f"{year}是闰年")
else:
print(f"{year}不是闰年")
用Python写一个判断闰年
可以使用以下代码来判断一个年份是否为闰年:
```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整除,那么它就是闰年。
阅读全文