获取用户输入月份,输出该月有多少天(考虑闰年)
时间: 2023-10-26 07:21:34 浏览: 134
可以使用 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` 函数输出结果。
相关问题
获取用户输入月份,输出该月有多少天(考虑闰年
)。
提示:
闰年的判断方法为:能被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代码实现:
```
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()`函数获取用户输入的年份和月份,并将它们转换成整数类型。
然后,我们使用条件语句判断该月份有多少天。对于1、3、5、7、8、10、12月,它们都有31天;对于4、6、9、11月,它们都有30天。对于2月份,需要判断该年份是否为闰年。闰年的判断条件是:能被4整除但不能被100整除,或者能被400整除。如果是闰年,2月份有29天;否则,2月份有28天。
最后,我们使用`print()`函数输出结果。
阅读全文