您可以使用pandas的DataFrame.loc
或DataFrame.insert
函数向excel插入一行。
例如:
import pandas as pd
# 创建一个示例数据帧
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 使用loc函数插入一行
df.loc[len(df)] = [10, 11, 12]
# 将数据帧写入excel
df.to_excel('example.xlsx', index=False)