pandas excel 添加一行
时间: 2023-09-02 17:15:43 浏览: 282
Python pandas如何向excel添加数据
要在 Pandas 中的 Excel 表中添加一行,可以使用以下步骤:
1. 读取 Excel 表格,并将其转换为 Pandas DataFrame,例如:
``` python
import pandas as pd
df = pd.read_excel('example.xlsx')
```
2. 创建一个新行的数据,例如:
``` python
new_row = {'Name': 'John', 'Age': 30, 'Sex': 'Male', 'City': 'New York'}
```
3. 将新行添加到 DataFrame 中,例如:
``` python
df = df.append(new_row, ignore_index=True)
```
4. 将 DataFrame 中的数据写回 Excel 表格中,例如:
``` python
df.to_excel('example.xlsx', index=False)
```
注意:如果想要在 Excel 表格的特定位置添加新行,则需要使用 openpyxl 库来操作 Excel 文件。
阅读全文