python闰年判定代码
时间: 2023-05-21 12:03:49 浏览: 113
闰年判断代码
5星 · 资源好评率100%
以下是 Python 代码,用于判断一个年份是否为闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
你可以将年份作为参数传递给 `is_leap_year` 函数,如果返回值为 `True`,则表示该年是闰年,否则为平年。
阅读全文