使用Python 将某个excel 中的一列 写入 另一个excel 中的某一列...

嗨 朋友们, 我遇到了一个地方感觉写不动了....求点拨一下:
想要实现的功能: 将某个excel 中的一列 写入 另一个excel 中的一列.

当前我的进展是:可以从第一个excel 中提取所需要的列。 & 打开第二个excle...(我把他们分别定义成了两个函数)

当前的困难是: 我不知道改如何 将第一个excel 中的指定信息列 插入 第二个excel 中去...(沿着最初的思路,感觉写不下去了)

这个是我现阶段的代码, 大家知道 该怎么继续么?

import openpyxl
import xlrd

def get_infor():
    book = xlrd.open_workbook('C:/Users/lenovo/Desktop/模板.xlsx')
    sheet = book.sheet_by_name('WRT模板')
    for i in range (3,sheet.nrows):          # i 从第四列开始
        PN = str(sheet.cell(i,3).value)
        Cost_USD = str(sheet.cell(i,7).value)

        print('PN:',PN)
        print('Cost_AUD:',Cost_USD)
        print("--------------")

        #return PN ,Cost_USD
# 连上了 指定的excel 的指定的 页签
def Open_excel():
    book = openpyxl.load_workbook('C:/Users/lenovo/Desktop/文档模板/AU/Cost_AU.xlsx')
    sheet = book.get_sheet_by_name('CostAU')
    sheet


get_infor()
# Open_excel()

https://blog.csdn.net/qq_37550440/article/details/89184950