Comment déclarer une fonction lambda à Python

func = lambda x,y,z: x*y*z
print(func(1, 2, 3))#that will print 6
IC