找到确定的字符串并删除单元格

时间:2012-08-01 18:37:06

标签: python excel xlrd

我创建了这个主题(Delete lines found in file with many lines),他们建议使用“xlrd”包。我使用并与文件进行交互,但无法将单元格的内容与某些字符串进行比较。 这是我的代码:

import xlrd
arquivo = xlrd.open_workbook('/media/IRREMOVIVEL/arquivo.xls',)
planilha = arquivo.sheet_by_index(0)


def lerPlanilha():
    for i in range(planilha.ncols):
        if (planilha.cell(8,9) == "2010"):
                print 'it works =>'
                break
    else:
            print 'not works'
                break    

lerPlanilha()

但是我收到了错误:无效

对不起,重复,可能和坏英语。

0 个答案:

没有答案