I use xlrd to read data from excel files.

For integers stored in the files, let's say 63, the xlrd interprets it as 63.0 of type number.

Why can't xlrd recognize 63 as an integer?

Assume sheet.row(1)[0].value gives us 63.0. How can I convert it back to 63.

link|improve this question

It'd just be int(yourfloat), wouldn't it? docs.python.org/library/functions.html#int. I won't post as an answer - I feel like I may be insulting you and probably missed something. – stackuser10210 Jan 11 at 19:52
@stackuser10210 I wonder why integer 63 in the spread sheet becomes 63.0. – Terry LiYifeng Jan 11 at 19:54
No idea. I'm not familiar with xlrd and I've never done similar. If they're really integers in excel (ie, A1=63.0, B1=Int(A1), and you're getting 63.0 from B1, then I can understand the problem. Sorry I don't have an answer. – stackuser10210 Jan 11 at 20:01
There are no integers in Excel. Just floating point numbers in drag. – Steven Rumbalski Jan 11 at 20:49
feedback

4 Answers

up vote 5 down vote accepted

Looking at the different cell types in the documentation, it seems that there isn't any integer type for cells, they're just floats. Hence, that's the reason you're getting floats back even when you wrote an integer.

To convert a float to an integer just use int:

>>> int(63.0)
63
>>> int(sheet.row(1)[0].value)
63
link|improve this answer
Woolly terminology. 63.0 is already an integer. int(some_float) truncates its arg to an integer and returns that value as an int object. – John Machin Jan 11 at 21:44
feedback

I'm reminded of this gem from the xlrd docs:

Dates in Excel spreadsheets

In reality, there are no such things. What you have are floating point numbers and pious hope.

The same is true of integers. Perhaps minus the pious hope.

link|improve this answer
Interesting point. – Terry LiYifeng Jan 11 at 20:49
feedback

Excel treats all numbers as floats. In general, it doesn't care whether your_number % 1 == 0.0 is true or not.

Example: A1 = 63.0, B1 = 63, C1 = INT(A1), A2 = TYPE(A1), B2 = TYPE(B1), C2 = TYPE(C1) You'l see that TYPE() returns 1 in each case.

From the Excel Help:

If value is   TYPE returns 
Number        1 
Text          2 
Logical value 4 
Error value   16 
Array         64 

xlrd reports what it finds. xlrd doesn't mangle its input before exposing it to you. Converting a column from (62.9, 63.0, 63.1, etc) to (62.9, 63, 63.1, etc) would seem like a pointless waste of CPU time to me.

link|improve this answer
+1. It doesn't get any better than hearing it straight from xlrd's author. – Steven Rumbalski Jan 11 at 21:31
feedback

The answer given by jcollado is alright if you have all the entries in the excel sheet as numbers which are integers. But suppose you have a number which is a float you can always put a check condition like -

    if i==int(i): //checking for the integer:
      print int(i)      // solving your problem and printing the integer
    else:
      print i           //printing the float if present

Hope you find this useful :)

link|improve this answer
Thanks minocha. – Terry LiYifeng Jan 11 at 21:09
np @TerryLiYifeng :) – minocha Jan 11 at 23:26
feedback

Your Answer

 
or
required, but never shown

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