python怎么判断是闰年程序

时间:2025-01-27 17:23:22 单机游戏

在Python中,判断一个年份是否为闰年可以通过以下几种方法实现:

方法一:使用条件语句

```python

year = int(input("请输入年份:"))

if year % 4 == 0 and year % 100 != 0:

print("这是闰年")

elif year % 400 == 0:

print("这是世纪闰年")

else:

print("这是平年")

```

方法二:定义函数

```python

def is_leap_year(year):

if year % 4 == 0 and year % 100 != 0:

return True

elif year % 400 == 0:

return True

else:

return False

year = int(input("请输入年份:"))

if is_leap_year(year):

print(year, "是闰年")

else:

print(year, "不是闰年")

```

方法三:使用`calendar`模块

```python

import calendar

year = int(input("请输入年份:"))

if calendar.isleap(year):

print(year, "是闰年")

else:

print(year, "不是闰年")

```

解释

条件语句

如果年份能被4整除且不能被100整除,则是闰年。

如果年份能被400整除,则是世纪闰年。

否则,是平年。

函数

定义一个函数`is_leap_year`,接受一个年份作为参数,返回一个布尔值,表示该年份是否为闰年。

在函数中,使用条件语句进行判断,并返回相应的布尔值。

`calendar`模块

导入`calendar`模块,使用`isleap`函数判断年份是否为闰年。

`isleap`函数接受一个年份作为参数,返回一个布尔值。

示例

```python

import calendar

def is_leap_year(year):

if year % 4 == 0 and year % 100 != 0:

return True

elif year % 400 == 0:

return True

else:

return False

从用户输入获取年份

year = int(input("请输入年份:"))

判断是否为闰年

if is_leap_year(year):

print(f"{year} 是闰年")

else:

print(f"{year} 不是闰年")

```

你可以选择任意一种方法来实现判断闰年的功能,选择哪种方法取决于你的具体需求和代码结构。