通读非结构化的xls文件

时间:2011-06-01 22:46:57

标签: python file xls

我有一个.xls文件,其中包含一列2,000行。

我想遍历文件并打印出数据点 以“便宜”开头。但是,以下代码不起作用。

帮助!

import xlrd
wb = xlrd.open_workbook("file.xls")

wb.sheet_names()

sh = wb.sheet_by_index(0)
lst = [sh]

for item in lst:
    print item.startswith("cheap")

    Traceback (most recent call last):
  File "C:\Python26\keywords.py", line 14, in <module>
    print item.startswith("cheap")
AttributeError: 'Sheet' object has no attribute 'startswith'

1 个答案:

答案 0 :(得分:2)

应该看起来像:

import xlrd
wb = xlrd.open_workbook("file.xls")

wb.sheet_names()

sh = wb.sheet_by_index(0)

for item in sh.col(0):
    value = unicode(item.value)
    if value.startswith("cheap"):
        print value