简单的日历程序
时间: 2023-10-08 12:06:25 浏览: 70
简单日历程序
这里是一个简单的日历程序,使用 Python 编写:
```python
import calendar
# 输入年份和月份
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 输出日历
print(calendar.month(year, month))
```
运行程序后,会提示用户输入年份和月份,然后输出对应月份的日历。例如,输入 2021 年 8 月,输出如下日历:
```
August 2021
Mo Tu We Th Fr Sa Su
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
```
阅读全文