Hello to everybody!
I'm new in Python ... and have some problem with reading Excel...
no matter that I've set format in Excel Text (for all my available data) - it get float value from it...
Ok: here is the code:
<code>
import xlrd
book=xlrd.open_workbook("C:/Py/aaa.xls")
sh=book.sheet_by_index(0)
print sh.cell_value(RowN,CellN)
# it prints 1.0
</code>
Can somebody give me good suggestion ?
Thanks
Slava