Kubikzahlen mit lambda


#!/usr/bin/python2.2
def f(x): return x*x*x 
map(lambda f:f(), [f(3)])