Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I want to convert a float to an integer in Python, what function do I use?

The problem is that I have to use a variable passed through the function math.fabs (Absolute Value) as an index for a list, so it has to be an int, while the function math.fabs returns a float.

share|improve this question

2 Answers

up vote 3 down vote accepted

Use the int() constructor:

>>> foo = 7.6
>>> int(foo)
7

Note that if you use the built-in abs() function with an integer argument, you'll get an integer result in the first place:

>>> type(abs(-7))
<type 'int'>
share|improve this answer

Probably you're looking for both round and int:

>>> foo = 1.9
>>> int(foo)
1
>>> int(round(foo))
2
share|improve this answer
+1 for mentioning round() – Cameron Oct 1 '11 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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