>>> def isFloatInteger(float): >>> return float.is_integer() >>> isFloatInteger(0.62) False >>> isFloatInteger(1.00) True