获取用户输入月份,输出该月有多少天(考虑闰年)
时间: 2023-05-28 17:07:43 浏览: 110
以下是Python代码实现:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
days = 29
else:
days = 28
print("{}年{}月有{}天".format(year, month, days))
```
首先,我们使用 `input` 函数获取用户输入的年份和月份,使用 `int` 函数将输入的字符串转换为整数。
接着,我们使用 if-elif-else 语句判断该月份有几天。对于大月份(1、3、5、7、8、10、12月),有31天;对于小月份(4、6、9、11月),有30天;对于二月,需要判断是否是闰年,如果是闰年,则有29天,否则有28天。
最后,我们使用 `print` 函数将结果输出。使用字符串格式化,将年份、月份和天数组合成一句话输出。
相关问题
获取用户输入月份,输出该月有多少天(考虑闰年
)。
提示:
闰年的判断方法为:能被4整除但不能被100整除,或者能被400整除的年份为闰年。
以下是Python代码实现:
```python
month = int(input("请输入月份:"))
year = int(input("请输入年份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
print("{0}年{1}月有31天".format(year, month))
elif month in [4, 6, 9, 11]:
print("{0}年{1}月有30天".format(year, month))
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print("{0}年{1}月有29天".format(year, month))
else:
print("{0}年{1}月有28天".format(year, month))
else:
print("输入月份有误!")
```
获取用户输入月份,输出该月有多少天(考虑闰年)
可以使用 Python 中的 `calendar` 模块来获取每个月的天数,代码如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
if month == 2 and calendar.isleap(year):
days += 1
print(f"{year}年{month}月有{days}天。")
```
代码中,先使用 `input` 函数获取用户输入的年份和月份。然后使用 `calendar.monthrange(year, month)` 函数获取指定年份月份的天数和该月第一天是星期几,返回一个元组,其中第二个元素就是该月的天数。如果该月是二月并且是闰年,则将天数加一。最后使用 `print` 函数输出结果。
阅读全文