Why does integer division yield a float instead of another integer?

Consider this division in Python: Python 3.1 (r31:73574, Jun 26 2009, 20:21:35) [MSC v.1500 32 bit (Intel)] on win32 Type “help”, “copyright”, “credits” or “license” for more information. >>> 2/2 1.0 Is this intended? I strongly remember earlier versions returning int/int = int. What should I do? Is there a new division operator or must … Read more

Safest way to convert float to integer in python?

Python’s math module contain handy functions like floor & ceil. These functions take a floating point number and return the nearest integer below or above it. However these functions return the answer as a floating point number. For example: import math f=math.floor(2.3) Now f returns: 2.0 What is the safest way to get an integer … Read more