python中判断闰年
时间: 2023-11-06 16:22:52 浏览: 78
判断闰年的方法是:能被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表示不是闰年。
相关问题
python-判断闰年
在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
```
这个方法中,首先判断年份能否被4整除,如果可以,则继续判断是否能被100整除,如果能被100整除,则再判断是否能被400整除。如果能被400整除,则是闰年;如果不能被400整除,则不是闰年。如果不能被4整除,则不是闰年。
python:判断闰年
可以通过以下代码判断闰年:
```python
year = int(input("请输入一个年份:"))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
代码解释:
首先要获取用户输入的年份,使用 `input` 函数获取输入并将其转换为整数类型。然后通过判断年份是否能被4整除且不能被100整除或者能被400整除来确定是否为闰年。如果是闰年,则输出相应的提示信息,否则输出不是闰年的提示信息。
阅读全文