Hi, Years ago i use xlrd to read data from excel and now I need again, but i get strange result. The code is:
from xlrd import * Planilha = open_workbook('C:\\Resultados.xls') Resultados = Planilha.sheet_by_name('Resultados') c = (Resultados.cell_value(2,2)) print c and the result is: 0, but the value in cell is : VERDADEIRO What´s the problem Thanks and sorry my bad english Yeats
-- http://mail.python.org/mailman/listinfo/python-list