用我的数据框的值填写表格

时间:2019-07-12 08:12:57

标签: python pandas loops dataframe

我认为这应该是一个简单的问题,但是我不知道该怎么做哈哈。

我有一个df(3x3)和一张PowerPoint中的表格(也是3x3)。现在,我想用数据框的值填充表格。

Here is my code I tried:
for index, row in df.iterrows():
    a = a + 1
    b = b + 1
    cell = table.cell(0, 0)
    cell.text
    cell.text = df.value

但这不起作用

0 个答案:

没有答案