floats = [float(v) for v in integerList]
floats = map(float, integerList)
list(map(float, integerList))
(It doesn't matter in a lot of cases, but there are enough edges where it does. Json serialization for one)