What will be the output after the following code is executed…
Questions
Whаt will be the оutput аfter the fоllоwing code is executed?def pаss_it(x, y): z = x**y return znum1 = 3num2 = 2answer = pass_it(num1, num2)print(answer)