Use the xlrd library to read the contents of an Excel table

import xlrd

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


    def file(self

Guess you like

Origin blog.csdn.net/m0_55389447/article/details/114684813