python输入下列年份和月份求对应天数
时间: 2024-02-28 22:06:50 浏览: 71
计算指定年份的月份的天数
5星 · 资源好评率100%
可以使用Python内置的`calendar`模块来实现该功能,具体代码如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
print("{}年{}月共有{}天".format(year, month, days))
```
运行以上代码,你可以输入年份和月份,程序将输出该月的天数。其中,`monthrange(year, month)`函数返回一个元组,其中第二个元素为该月的天数。
阅读全文