python实现日历功能的代码
时间: 2023-10-01 13:04:46 浏览: 128
实现日历功能
以下是Python实现日历功能的代码:
```python
import calendar
# 输入年份和月份
year = int(input("请输入年份: "))
month = int(input("请输入月份: "))
# 显示该月份的日历
print(calendar.month(year, month))
```
运行该程序后,输入年份和月份即可输出该月份的日历。
阅读全文