用python写判断闰年的程序
时间: 2023-05-17 17:05:53 浏览: 102
以下是用 Python 编写判断闰年的程序:
```
year = int(input("请输入一个年份:"))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print(year, "是闰年")
else:
print(year, "不是闰年")
```
这个程序会根据用户输入的年份,判断该年份是否为闰年。如果是闰年,程序会输出“是闰年”,否则输出“不是闰年”。
相关问题
用Python编写判断闰年的程序
以下是用 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,则表示该年份不是闰年。
例如,如果你想判断 2020 年是否为闰年,可以这样调用这个函数:
```python
is_leap_year(2020)
```
它会返回 True,因为 2020 年是闰年。
python判断闰年程序
在Python中,可以使用简单的条件语句来编写一个判断闰年的程序。根据格里高利历的规定,闰年的判断标准如下:
1. 如果一个年份能被4整除,那么它通常是闰年;
2. 但是,如果这个年份能被100整除,它不是闰年;
3. 然而,如果这个年份同时能被400整除,那么它又是闰年。
基于以上规则,你可以创建如下的函数:
```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(f"{year}是闰年")
else:
print(f"{year}不是闰年")
```
阅读全文