使用xlrd库读取Excel表格内容

import xlrd

class modifyfilr():
    def __init__(self):
        # 首先打开excel文件
        self.xl = xlrd.open_workbook(r'S:\\Elements.xlsx')


    def file(self

猜你喜欢

转载自blog.csdn.net/m0_55389447/article/details/114684813