Can you help me understand this Python interview question?

Hey,

Let func = lambda a, b : (a ** b), what is the output of func(float(10),20) ?

Please can someone share their approach to solving this problem?
Refrence

Thanks in advance…!

a ** b does a to the b power: ab

1 Like