python pandas 按行构建dataFrame 写入excel
时间: 2023-04-02 12:04:25 浏览: 179
python pandas写入excel文件的方法示例
5星 · 资源好评率100%
可以使用 pandas 库中的 DataFrame 函数来构建 dataFrame,然后使用 to_excel 方法将其写入 excel 文件中。具体的代码实现可以参考以下示例:
import pandas as pd
# 构建 dataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 写入 excel 文件
df.to_excel('output.xlsx', index=False)
其中,DataFrame 函数中的参数可以根据实际情况进行调整,to_excel 方法中的参数 index=False 表示不将行索引写入 excel 文件中。
阅读全文