dataframe插入n行0值
时间: 2024-05-15 08:12:31 浏览: 133
python实现在pandas.DataFrame添加一行
你可以使用 Pandas 中的 `append` 方法来插入 n 行 0 值。以下是一个示例代码:
``` python
import pandas as pd
# 创建一个空的 dataframe
df = pd.DataFrame(columns=['col1', 'col2', 'col3'])
# 插入 n 行 0 值
n = 5
for i in range(n):
df = df.append({'col1': 0, 'col2': 0, 'col3': 0}, ignore_index=True)
print(df)
```
在上面的代码中,我们首先创建了一个空的 dataframe,然后使用一个循环来插入 n 行 0 值。最后,我们将 dataframe 打印出来以确认插入操作是否成功。
阅读全文