Create a function get_lambda that returns a lambda function that takes a tuple and raises each element in the tuple to the second power.
>>>f = get_lambda()
>>>f((1, 2, 3, 4))
>>>(1, 4, 9, 16)
def get_lambda():
get_lambda = lambda x: x**2
f = get_lambda()
f((1, 2, 3, 4))
I can't figure out why I keep getting an error. what's wrong with my code?