So deklarieren Sie eine Lambda -Funktion in Python
func = lambda x,y,z: x*y*z
print(func(1, 2, 3))#that will print 6
IC
func = lambda x,y,z: x*y*z
print(func(1, 2, 3))#that will print 6