>>> import numpy as np >>> f = lambda x: x**2 >>> seq = map(f, range(5)) >>> np.fromiter(seq, dtype=np.int) array([ 0, 1, 4, 9, 16])