Ex.No. #3 EXPONENTIATION OF A NUMBER (English)
Ex. No. : 03 EXPONENTIATION OF A NUMBER Aim: To write a Python program to find the exponentiation of a number. Program: b=int(input(" Enter the base value : ")) 5 e=int(input(" Enter the power : ")) 3 p=1 for i in range(e): 0,1,2 0 i=1 i=2 ...