python 万年历
时间: 2023-12-02 21:42:59 浏览: 146
Python万年历
以下是Python实现万年历的代码和解释:
```python
import calendar
# 获取用户输入的年份和月份
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 使用calendar库获取该月份的日历
cal = calendar.month(year, month)
print(cal)
```
运行上述代码后,用户可以输入要查询的年份和月份,程序将输出该月份的日历。
--相关问题--:
1. Python中如何获取某一年的日历?
2. 如何在Python中判断某
阅读全文