用python写输入年月,输出该月的天数
时间: 2023-09-26 20:11:28 浏览: 245
让用户输入年月,显示该月的天数
5星 · 资源好评率100%
可以使用 Python 自带的 `calendar` 模块来实现。具体的实现步骤如下:
1. 导入 `calendar` 模块
2. 通过 `input()` 函数获取用户输入的年份和月份
3. 调用 `calendar.monthrange(year, month)` 函数获取该月的天数
4. 输出该月的天数
下面是代码示例:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 获取该月的天数
days = calendar.monthrange(year, month)[1]
print(f"{year} 年 {month} 月共有 {days} 天")
```
当你输入年份为 2021,月份为 8 时,输出结果为:
```
请输入年份:2021
请输入月份:8
2021 年 8 月共有 31 天
```
阅读全文