[Python] 纯文本查看 复制代码 import openpyxl #pip install openpyxl
test_file = r'C:\Users\Administrator\Desktop\收09-21.xlsx'
file = openpyxl.load_workbook(test_file)
sheet = file["Sheet"]
test_dic = {"测试2": 2}
for col in range(1, sheet.max_column + 1): #遍历第一行有内容的所有列
row1_value = sheet.cell(row=1, column=col).value #第1行的值
row2_value = sheet.cell(
row=2, column=col).value #第2行的值,如果写入前需要先判断第二行的值(是否为空之类的),则用得上
if row1_value in test_dic:
sheet.cell(row=2, column=col,
value=test_dic[row1_value]) #根据第1行的值,写入第2行的值(第三个参数)
file.save(test_file) #保存 |