用python只提取2022/6/1的年月部分
时间: 2023-10-24 19:07:45 浏览: 82
数据处理Pandas-提取Excel日期数据年月日-Python实例源码.zip
5星 · 资源好评率100%
可以使用Python的datetime模块来解析日期字符串,然后提取其中的年月部分。具体代码如下:
```python
from datetime import datetime
date_string = '2022/6/1'
date = datetime.strptime(date_string, '%Y/%m/%d')
year_month = date.strftime('%Y/%m')
print(year_month)
```
输出结果为:`2022/06`,即为2022年6月的年月部分。
阅读全文