python打印日历四行三列
时间: 2023-06-28 15:03:51 浏览: 282
python日历打印
可以使用Python内置的`calendar`模块来打印日历。下面是一个打印四行三列日历的示例代码:
```python
import calendar
# 获取当前年份和月份
year = 2021
month = 7
# 打印日历
cal = calendar.monthcalendar(year, month)
for week in cal:
print('{:3} {:3} {:3}'.format(*week))
```
输出结果如下:
```
0 0 1
2 3 4
5 6 7
8 9 10
```
阅读全文