python判断闰年的代码
时间: 2023-09-04 15:11:12 浏览: 90
判断闰年的常见方法是根据公历规定:公历年份是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判断闰年的代码到exit结束
在Python中,你可以通过简单的条件判断来确定一个年份是否是闰年。根据公历规则,闰年的条件通常是能被4整除但不能被100整除,除非它同时也能被400整除。以下是判断闰年的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
while True:
try:
year = int(input("请输入一个年份(输入exit退出):"))
if year.lower() == 'exit':
break
elif is_leap_year(year):
print(f"{year}是闰年")
else:
print(f"{year}不是闰年")
except ValueError:
print("输入错误,请输入一个有效的年份.")
阅读全文