使用Python中的XLRD迭代行和列

4
我将使用Python的xlrd模块来解析Excel文件。以下是Excel文件的样子:
Title           A   B   C
attribute 1     1   2   3
attribute 2     4   5   6
attribute 3     7   8   9

我希望您能够以以下格式输出:

[
    {
        "name": "A",
        "attribute1": {
            "value": 1
        },
        "attribute2": {
            "value": 4
        },
        "attribute3": {
            "value": 7
        }       
    },
    {
        "name": "B",
        "attribute1": {
            "value": 2
        },
        "attribute2": {
            "value": 5
        },
        "attribute3": {
            "value": 8
        }   
    },
    {
        "name": "C",
        "attribute1": {
            "value": 3
        },
        "attribute2": {
            "value": 6
        },
        "attribute3": {
            "value": 9
        }       
    }       
]

我已经尝试了以下方法,但无法弄清如何以上述格式创建输出。非常感谢您的帮助!

from xlrd import open_workbook

wb = open_workbook('D:\abc_Template.xlsx', 'r')

wb_sheet = wb.sheet_by_index(0)

values = []

for row_idx in range(7, wb_sheet.nrows):
    col_value = []
    rowval = str((wb_sheet.cell(row_idx, 1)))

    for col_idx in range(1, 5):
        if(col_idx != 2 and col_idx != 1):
            cellVal = wb_sheet.cell(row_idx, col_idx)
            cellObj = {rowval: {"value" : cellVal}}
            col_value.append(cellObj)

    values.append(col_value)

print values
1个回答

7

range(7, wb_sheet.nrows)range(1, 5)中的迭代器值与输入表格的维度不相等。先按列解析数据,然后再按行解析似乎更容易。以下是您的解析器代码建议:

from xlrd import open_workbook
import json

wb = open_workbook('abc_Template.xlsx', 'r')

wb_sheet = wb.sheet_by_index(0)

values = []

for col_idx in range(1, wb_sheet.ncols):
    cellObj = {"name": str(wb_sheet.cell(0, col_idx).value)}
    for row_idx in range(1, wb_sheet.nrows):
        attrib = str(wb_sheet.cell(row_idx, 0).value)
        cellObj[str(attrib)] = {"value": int(wb_sheet.cell(row_idx, col_idx).value)}

    values.append(cellObj)

print(json.dumps(values))

OBS: 这个例子需要使用 Python 版本大于 3,确保导入 json 库并更改 .xlsx 文件的输入路径。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接