python excel 时间格式转为str
时间: 2023-10-29 22:54:32 浏览: 178
要将Python中的Excel时间格式转换为字符串,你可以使用xlrd库中的xldate_as_tuple()函数和datetime库中的strftime()函数。首先,使用xldate_as_tuple()函数将Excel中的时间格式转换为datetime对象。然后,使用strftime()函数将datetime对象格式化为字符串。
以下是一个示例代码,演示如何将Excel中的时间格式转换为字符串:
```python
import xlrd
from datetime import datetime
data = xlrd.open_workbook(r'D:\gg.xls')
table = data.sheets()[0]
nrows = table.nrows
for i in range(nrows):
cell = table.cell(i, 0).value
if i == 0:
# 如果是表头,直接写入字符串到Excel中
sheet.write(i, 0, cell)
else:
# 将Excel时间格式转换为datetime对象
d = datetime(*xldate_as_tuple(cell, 0))
# 将datetime对象格式化为字符串
e = d.strftime("%Y-%m-%d %H:%M:%S")
# 将格式化后的字符串写入Excel中
sheet.write(i, 0, e)
wbk.save(r'D:\gg-all.xls')
```
这段代码会将Excel中的时间格式转换为"%Y-%m-%d %H:%M:%S"的字符串格式,并将结果写入到Excel中的对应单元格中。
阅读全文