用python判断某一年是不是闰年。以下是两个判断标准: 1. 年份是4的倍数且不是100的倍数; 2. 年份是400的倍数。 除此之外,其他年份都不是闰年。
时间: 2024-03-22 07:42:52 浏览: 69
runnian.rar_TRUE
可以使用以下代码来判断某一年是否是闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0:
return True
elif year % 400 == 0:
return True
else:
return False
```
其中,`year` 是要判断的年份,函数返回值为 True 表示是闰年,False 表示不是闰年。
您可以调用这个函数并传入年份来进行判断,例如:
```python
print(is_leap_year(2000)) # True
print(is_leap_year(1900)) # False
print(is_leap_year(2021)) # False
```
阅读全文