python中calendar模块中Calendar()函数的作用?所需参数?简单案例?
时间: 2023-06-05 14:06:31 浏览: 183
Python Datetime模块和Calendar模块用法实例分析
Calendar()函数的作用是创建一个日历对象,可以用于输出指定年份和月份的日历。该函数不需要任何参数。
简单案例:
```python
import calendar
# 创建一个日历对象
cal = calendar.Calendar()
# 输出2022年1月的日历
for day in cal.itermonthdates(2022, 1):
print(day)
```
输出:
```
2021-12-26
2021-12-27
2021-12-28
2021-12-29
2021-12-30
2021-12-31
2022-01-01
2022-01-02
2022-01-03
2022-01-04
2022-01-05
2022-01-06
2022-01-07
2022-01-08
2022-01-09
2022-01-10
2022-01-11
2022-01-12
2022-01-13
2022-01-14
2022-01-15
2022-01-16
2022-01-17
2022-01-18
2022-01-19
2022-01-20
2022-01-21
2022-01-22
2022-01-23
2022-01-24
2022-01-25
2022-01-26
2022-01-27
2022-01-28
2022-01-29
2022-01-30
2022-01-31
```
阅读全文