用Python编个判断闰年的代码
时间: 2023-11-05 19:15:06 浏览: 67
下面是一个简单的 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编写的判断闰年的代码:
```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
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
这段代码中,我们定义了一个`is_leap_year`函数,用于判断给定的年份是否为闰年。根据闰年的定义,如果一个年份能被4整除但不能被100整除,或者能被400整除,那么它就是闰年。
在主程序中,我们通过`input`函数获取用户输入的年份,并调用`is_leap_year`函数进行判断。如果返回值为`True`,则输出该年份是闰年,否则输出不是闰年。
用Python编一个判断闰年的代码
好的,下面是一个简单的 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整除,则被判断为闰年。
阅读全文