用Python编一个判断闰年的代码
时间: 2023-11-16 16:09:50 浏览: 65
好的,下面是一个简单的 Python 代码实现判断闰年的方法:
```python
year = int(input("请输入一个年份:"))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
运行代码后,会要求用户输入一个年份,然后根据闰年的判断条件输出结果。其中,如果一个年份能够被4整除但不能被100整除,或者能够被400整除,则被判断为闰年。
相关问题
用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
```
可以将年份作为参数传递给函数 `is_leap_year()`,该函数将返回 `True`(是闰年)或 `False`(不是闰年)。
用Python写一个判断闰年
可以使用以下代码来判断一个年份是否为闰年:
```python
def is_leap_year(year):
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
return True
else:
return False
```
其中,如果一个年份能被4整除但不能被100整除,或者能被400整除,那么它就是闰年。
阅读全文