- Integers from excel files become floats?
- >>> int(63.0)
- 63
- >>> int(sheet.row(1)[0].value)
- 63
- If value is TYPE returns
- Number 1
- Text 2
- Logical value 4
- Error value 16
- Array 64
- 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