判断闰年的Python代码
时间: 2023-11-05 08:15:49 浏览: 68
判断闰年的汇编程序源代码资料
以下是判断闰年的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
```
可以调用这个函数来判断某一年是否是闰年,如果返回值为True,则该年为闰年;如果返回值为False,则该年不是闰年。例如:
```python
>>> is_leap_year(2020)
True
>>> is_leap_year(2021)
False
```
阅读全文