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
このコードを試してみると、インタプリタが返してくれました: AttributeError: 'module' object has no attribute 'open_workbook' whats wrong? すべてのマニュアルでこのコードを入力しました!