python 从Excel电子表格导入特定行的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从Excel电子表格导入特定行的数据相关的知识,希望对你有一定的参考价值。

def parse_file(datafile):
    workbook = xlrd.open_workbook(datafile)
    sheet = workbook.sheet_by_index(0)

    data = [
        [sheet.cell_value(r, col)
         for col in range(sheet.ncols)]
            for r in range(sheet.nrows)
    ]

    for row in range(sheet.nrows):
        for col in range(sheet.ncols):
            if row == 50:
                print("\nRow 50:\n")
                print(sheet.cell_value(row, col))

    return data

以上是关于python 从Excel电子表格导入特定行的数据的主要内容,如果未能解决你的问题,请参考以下文章

将数据从 excel 电子表格导入 django 模型

将 Excel 电子表格导入 MS Access 数据库

将 Excel 电子表格列导入 SQL Server 数据库

从 python 3.x 编写 excel 2003 文件

从电子表格转换为 xml 中的列表列表

在 Excel 中将特定信息从一个电子表格传输到另一个电子表格