python将数据写入excel中
时间: 2023-08-23 16:08:10 浏览: 252
python将数据写入excel的三种方式
5星 · 资源好评率100%
可以使用Python中的pandas库来将数据写入Excel中。首先需要使用pandas将数据存储为DataFrame格式,然后使用DataFrame的to_excel方法将数据写入Excel文件中。以下是示例代码:
```python
import pandas as pd
# 将数据存储为DataFrame格式
data = {'name': ['Jack', 'Tom', 'Mary'], 'age': [18, 20, 19]}
df = pd.DataFrame(data)
# 将数据写入Excel文件中
excel_writer = pd.ExcelWriter('my_data.xlsx')
df.to_excel(excel_writer)
excel_writer.save()
```
这样就将数据成功写入了名为"my_data.xlsx"的Excel文件中。
阅读全文