当python读取execl时,是有其他类型的,无法直接生成日期类型,需要转换
可使用以下方法进行转换
- 数字时
python
planned_date = xldate_as_datetime(row_line[13], 0)
print(planned_date)
- 字符串时
python
planned_date = datetime.datetime.strptime(row_line[13], "%Y-%m-%d")
分不同情况,即可处理成日期格式