calendar.month 少一个月
时间: 2023-04-28 21:01:14 浏览: 701
monthCalendar
如果想要在 Python 中使用 calendar.month 函数来显示少一个月的日历,可以先获取当前日期,然后将月份减一,最后调用 calendar.month 函数来显示新的日历。具体代码如下:
```python
import calendar
import datetime
now = datetime.datetime.now()
last_month = now.month - 1
if last_month == :
last_month = 12
print(calendar.month(now.year, last_month))
```
这段代码会显示当前日期所在年份的上一个月的日历。如果当前月份是 1 月,则会显示去年的 12 月份的日历。
阅读全文