Function Python

def func(x, y, z): return x + y + z
print apply(func, (2, 3, 4))
f = lambda x, y, z: x + y + z
print apply(f, (2, 3, 4))