Well i have a question that i feel i've been answered several times, from what i found here. However, as a newbie, i can't really understand how to perform a really basic operation.

Here's the thing :

  • i have an .xls and when i use xlrd to get a value i'm just using sh.cell(0,0) (assuming that sh is my sheet);

  • if what is in the cell is a string i get something like text:u'MyName' and i only want to keep the string 'MyName';

  • if what is in the cell is a number i get something like number:201.0 and i only want to keep the integer 201.

If anyone can indicate me what i should to only extract the value, formatted as i want, thank you.

link|improve this question

53% accept rate
feedback

1 Answer

up vote 2 down vote accepted

sh.cell(x, y) returns an instance of the class Cell. When you print sh.cell(x,y) you are returning the repr function of the class (so it prints type:value).

you should try:

cell = sh.cell(x,y)
print(cell.value)

I cannot test this since I don't have xlrd but, I think it will work given the documentation: https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html#sheet.Cell-class

link|improve this answer
also, it will return the unicode version of the string in the value attribute, so you will probably need to decode that if you want just 'MyName' depending on what you want to do with u'MyName'. – comamitc Jan 18 at 12:22
Thank you a lot. It works! – clowny Jan 18 at 12:36
@comamitc: If you've got unicode and you want bytes, you encode, not decode. But for many things it probably makes more sense to use unicode. – Thomas K Jan 18 at 12:50
@ThomasK: correct you are! I cannot edit my type-o in comments though. – comamitc Jan 18 at 12:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.