python中openpyxl模块操作excel

2022/8/13 1:26:21

本文主要是介绍python中openpyxl模块操作excel,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

import pandas as pd
from openpyxl.utils import get_column_letter, column_index_from_string
import openpyxl
wb = openpyxl.load_workbook('cases.xlsx')
sh = wb['Sheet1']
for i in range(2,100000):
    ce = sh.cell(row = i,column = column_index_from_string('w'))
    print(ce.value)

    sh.cell(row = i,column =column_index_from_string('f'),value =ce.value)
wb.save(r'cases.xlsx')
wb.close()

 



这篇关于python中openpyxl模块操作excel的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程