python将txt文本数据写入excel表格的第二列
时间: 2023-08-23 18:03:40 浏览: 186
python将txt内容读出写入excel
可以使用Python中的`openpyxl`库来实现将txt文本数据写入excel表格的第二列。以下是一个示例代码:
```python
import openpyxl
# 打开已有的Excel文件
workbook = openpyxl.load_workbook('example.xlsx')
# 选择要操作的sheet
sheet = workbook.active
# 打开txt文件,并按行读取内容
with open('example.txt', 'r') as txt_file:
lines = txt_file.readlines()
# 将txt文件中的内容写入Excel表格的第二列
for i in range(len(lines)):
sheet.cell(row=i+1, column=2, value=lines[i].strip())
# 保存Excel文件
workbook.save('example.xlsx')
```
上述代码中,`openpyxl`库用于打开已有的Excel文件,并选择要操作的sheet。然后使用`with open()`语句打开txt文件,并按行读取其中的内容。最后,使用`for`循环将txt文件中的每一行内容写入Excel表格的第二列。最后,保存Excel文件即可。
阅读全文