美文网首页
python3读取excel信息

python3读取excel信息

作者: singledog_c813 | 来源:发表于2020-08-22 15:36 被阅读0次

    安装xlrd   命令:pip install xlrd

     如果出现无法安装的情况可能是pip版本较低输入,输入命令:python -m pip install --upgrade pip     即可

    import xlrd

    def read_file(route,sheet):

    # 打开文件

        file_Data = xlrd.open_workbook(route)

    # 选择excel读取页码

        sheet1 = file_Data.sheet_by_name(sheet)

    array = []

    for xin range(sheet1.nrows):

    a = sheet1.row_values(x)

    array.append(a)

    # 拼接返回二维数组

        print(array)

    # 文件路径

    rou =rf'F:\data.xls'

    # 页码

    she ='Sheet1'

    read_file(rou, she)

    相关文章

      网友评论

          本文标题:python3读取excel信息

          本文链接:https://www.haomeiwen.com/subject/nnaqcqtx.html