Buildin Function Python Tutorial

seq = range(8)
def square(x): return x*x
print map(None, seq, map(square, seq))