python实现万年历
时间: 2023-06-29 15:17:05 浏览: 187
python桌面版万年历,农历日期,法定节假日,节日提醒,添加日程及日程提醒
好的,以下是Python实现万年历的代码,可以根据输入的年份和月份来输出对应的日历:
```python
# 导入日历模块
import calendar
# 输入年份和月份
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 输出日历
print(calendar.month(year, month))
```
运行程序后,会提示输入年份和月份,输入后即可输出对应的日历。如果需要输出整年的日历,可以使用 `calendar.calendar(year)` 方法。
阅读全文