Find the power of given number in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code b=int(input(“Enter the base :”))ex=int(input(“Enter the exponent :”))pow=1for n in range(1,ex+1): pow=pow*b;print(“Power is :”, pow Output Enter the base :3Enter the exponent :3Power is : 27 View All Python Programs