输入年和月份,输出该年该月份的天数
时间: 2024-05-08 10:18:10 浏览: 62
输入月份,显示天数C++
该月的天数输出如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
print(f"{year}年{month}月共有{days}天")
```
示例输出:
```
请输入年份:2021
请输入月份:7
2021年7月共有31天
```
阅读全文