Function Python Tutorial

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