f =map(lambda x:x*5,range(1,11))print fl = ["tom","lucy"]print "*".join(l)def f(x):    return x *5print map (f,[1,2,3,4,5])print map(lambda x:x*5,[1,2,3,4,5])print reduce(lambda x,y:x+y,[1,2,3,4,5])print "\n".join(map(lambda x:" "*(2*5-2*x) + (x + 1)*"love",[0,1,2,3,4,3,2,1,0]    ))