python获取当前年月
时间: 2023-09-29 21:10:14 浏览: 63
python获取当前日期
可以使用Python内置模块datetime获取当前年月。
示例代码:
```python
import datetime
now = datetime.datetime.now()
year = now.year
month = now.month
print(year, month)
```
输出结果:
```
2022 9
```
其中,`now()`方法返回当前日期时间,`year`属性获取年份,`month`属性获取月份。
阅读全文