Computer Science, asked by div095, 1 month ago

write a python program that will accept 3 numbers x,y & z from user & calculate x ^ yz and display the result.​

Answers

Answered by idyllic
2

x = int(input("Enter the number x:"))

y = int(input("Enter the number y:"))

z = int(input("enter the numberz:"))

e = z (multiplied) y                         #change "multiplied" with 1 Asterisk

print("The result is:", x raised e)         #change "raised" with 2 Asterisks

please note:

the underlined "raised" must be written with 2 Asterisks

and the underlined "multiplied" must be written with 1 Asterisks

Similar questions