python判断闰年的代码
时间: 2023-09-04 07:11:12 浏览: 85
判断闰年的常见方法是根据公历规定:公历年份是4的倍数且不是100的倍数的,为闰年;公历年份是400的倍数的,也是闰年。因此,可以编写以下Python代码来判断闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
该函数接收一个年份作为参数,如果该年份是闰年,则返回True,否则返回False。可以使用该函数来判断任意年份是否为闰年,例如:
```python
print(is_leap_year(2000)) # True
print(is_leap_year(2020)) # True
print(is_leap_year(2021)) # False
```
希望对你有帮助!
相关问题
python判断闰年代码
以下是Python代码判断闰年:
```python
def is_leap(year):
leap = False
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
leap = True
else:
leap = True
return leap
```
这个函数接收一个年份作为参数,如果该年份为闰年,则返回True,否则返回False。如果你需要判断一个特定的年份是否为闰年,可以这样调用函数:
```python
if is_leap(2020):
print("2020年是闰年")
else:
print("2020年不是闰年")
```
Python判断闰年
判断闰年的方法是:能被4整除但不能被100整除,或者能被400整除的年份是闰年。
以下是Python代码示例:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
其中,`year`是要判断的年份,函数返回`True`表示是闰年,返回`False`表示不是闰年。
阅读全文