python 获取当前时间年月
时间: 2023-09-27 13:08:45 浏览: 68
python获取当前日期和时间的方法
5星 · 资源好评率100%
可以使用 Python 中的 datetime 模块来获取当前时间的年月。具体代码如下:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
print("当前时间是:{}年{}月".format(year, month))
```
输出结果类似于:
```
当前时间是:2021年10月
```
阅读全文