将形如18.9这样的年月转换为datetime格式
时间: 2023-06-10 17:06:33 浏览: 80
convert来取得datetime
可以使用Python中的datetime模块来将形如18.9这样的年月转换为datetime格式。具体实现代码如下:
```python
from datetime import datetime
date_str = '18.9'
date_obj = datetime.strptime(date_str, '%y.%m')
print(date_obj)
```
解析:
- `datetime.strptime()` 方法可以将字符串转换为datetime类型的对象。
- `%y` 表示两位数的年份, `%m` 表示两位数的月份。
- `date_obj` 就是转换后的datetime对象,可以对其进行各种操作。
阅读全文