用python 编写一个日历的程序
时间: 2023-09-13 09:11:24 浏览: 208
python写日历
好的,以下是一个简单的用Python编写的日历程序:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
cal = calendar.month(year, month)
print("以下是%d年%d月的日历:" % (year, month))
print(cal)
```
希望对你有所帮助!还有什么问题需要我回答吗?
阅读全文