用python编写程序获取当前日期时间,并输出当月的日历。
时间: 2024-04-30 22:23:15 浏览: 141
python获取当前日期
可以使用Python内置的datetime和calendar模块来实现。
以下是一个简单的示例代码:
```python
import datetime
import calendar
# 获取当前日期时间
now = datetime.datetime.now()
# 输出当前日期时间
print("当前日期时间:", now)
# 获取当月第一天的星期和总天数
first_day_weekday, total_days = calendar.monthrange(now.year, now.month)
# 输出当月日历
print(calendar.month(now.year, now.month))
```
输出结果如下:
```
当前日期时间: 2021-10-27 15:36:21.441514
October 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
```
阅读全文