dataframe添加一行
时间: 2023-09-22 07:07:04 浏览: 73
python实现在pandas.DataFrame添加一行
你可以使用 `append()` 方法来向 DataFrame 中添加一行数据,例如:
```python
import pandas as pd
# 创建一个空的 DataFrame
df = pd.DataFrame(columns=['Name', 'Age'])
# 添加一行数据
new_row = {'Name': 'Alice', 'Age': 25}
df = df.append(new_row, ignore_index=True)
print(df)
```
输出结果为:
```
Name Age
0 Alice 25
```
阅读全文