python制作万年历
时间: 2023-08-11 19:23:28 浏览: 505
python万年历实现代码 含运行结果
好的,以下是一个简单的 Python 万年历程序:
```python
# 导入日历模块
import calendar
# 输入年份和月份
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 输出日历
print(calendar.month(year, month))
```
运行程序后,输入年份和月份,程序会输出对应的日历。如果需要输出整年的日历,可以使用 `calendar.calendar(year)` 函数。
希望这个简单的程序能帮到你!
阅读全文