# Python program to raise elements of tuple# as a power to another tuple# Initializing and printing tuple valuestup1=(4,1,7,2) tup2=(2,5,3,8)print("The elements of tuple 1 : "+str(tup1))print("The elements of tuple 2 : "+str(tup2))# Raising elements of tuple as power to...
First run: Enter the first number (value of a): 5 Enter the second number (Value of b): 3 5 raise to the power 3 is = 125 Second run: Enter the first number (value of a): 5 Enter the second number (Value of b): 0 5 raise to the power 0 is = 1 Third run: E...