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