Hacker News new | ask | show | jobs
by wiredfool 1175 days ago
Except that these are different -- the second returns an iterator (at least in python3). You'd need

   list(map(float, integerList)) 
for them to be equivalent.

(It doesn't matter in a lot of cases, but there are enough edges where it does. Json serialization for one)