pandas 向已有的excel指定的行和列添加数据

现有一个excel表格:

pandas 向已有的excel指定的行和列添加数据_第1张图片

import pandas as pd
import openpyxl

df1 = pd.DataFrame(
    {
        "num1": [21,25,56,11],
        "num2": [31,35,36,12],
        "num3": [41,45,46,14],
        
    },
    index=[0, 1, 2,3],
)

df1

pandas 向已有的excel指定的行和列添加数据_第2张图片

 

#用openpyxl打开excel
wb=openpyxl.load_workbook('C:\\Users\\19051\\Desktop\\test1.xlsx')
#打开指定的Sheet
ws = wb['Sheet1']

startCol = 3

#下面两行的意思是,将df1的每一行转成列表
for i in range(0, df1.shape[0]):
    eachRowList = df1.iloc[i,:].tolist()

    #取每个列表里面的值
    for j in range(0,len(eachRowList)):
        #row 代表从几行开始, columns 代表从第几列开始
        #这里是从第6行, 第3列开始插入
        ws.cell(row = i+6, column = startCol+j).value =eachRowList[j]

#保存为新的表格
wb.save('C:\\Users\\19051\\Desktop\\test2.xlsx')

pandas 向已有的excel指定的行和列添加数据_第3张图片

你可能感兴趣的:(python,python,openpyxl)