Assume nothing is defined yet. Using a lambda (anonymous) function, create a variable named cube that holds a one-line function taking a single number x and returning x raised to the third power.
For example, once your code runs, cube(2) should evaluate to 8 and cube(-3) to -27. Your cube must be built with lambda, not with def.