Buildin Function Python Tutorial

def cube(x):  return x*x*x
print map(cube, range(1, 11))