0
thebook = open_workbook(file_to_import)
thesheet = thebook.sheet_by_index(0)
print "show that there is value in the sheet: %s" % thesheet.cell(1,1).value
print "there is nothing in thesheet.col_label_ranges:"
print thesheet.col_label_ranges

for crange in thesheet.col_label_ranges:
    rlo, rhi, clo, chi = crange
    for rx in xrange(rlo, rhi):
        for cx in xrange(clo, chi):
            print "Column label at (rowx=%d, colx=%d) is %r" \
                (rx, cx, thesheet.cell_value(rx, cx))

我正在尝试获取特定单元格的行和列标签,并且我找到了循环遍历我在上面使用的 col_label_ranges 的代码。但是,当我运行此代码时,我得到的结果是:

show that there is value in the sheet: Katherine
there is nothing in thesheet.col_label_ranges:
[]

请告诉我出了什么问题,我应该怎么做才能读取单元格的行和列标签?

4

1 回答 1

0

所以.col_label_ranges是空的 - 你真的有任何标签名称吗?一切都意味着你没有。

请注意 xlrd 提及的文档:

包含列标签的单元格的地址范围列表。这些是通过插入 > 名称 > 标签 > 列在 Excel 中设置的。

于 2012-12-13T16:30:07.860 回答