Python pandas如何在excel中从数组中写入数据

时间:2017-07-31 17:58:16

标签: python excel python-3.x pandas

我无法在excel中从数组中写入数据。

DataFrame()中指定函数需要哪些参数?

import pandas as pd

table = pd.read_excel("file1.xlsx", sheetname="file1")
lastval = table['lastval'].values.tolist()
newval = table['newval'].values.tolist()
rm = table['rm'].values.tolist()
itog = [0, 0, 0]

for i in range(3):
    itog[i] = (newval[i]-lastval[i]) * rm[i]
    pd.DataFrame(?????)

1 个答案:

答案 0 :(得分:1)

您正在寻找的功能是to_excel。请查看文档here