用python编写程序,输入程序中的年、月,输出本月有多少天。求它的语句
时间: 2023-05-17 10:07:58 浏览: 2147
编程实现从键盘上输入年份和月份,即可输出该页对应的天数含(闰年
可以使用 Python 的 calendar 模块来实现这个功能,具体语句如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
print(f"{year}年{month}月有{days}天")
```
这个程序会先让用户输入年份和月份,然后使用 calendar.monthrange() 函数获取该月份的天数,最后输出结果。
阅读全文