Write a Python program to solve the following mathematical expression
Answer:
Code:
import
math
x=float(input(
"Enter value for x: "
))
y=float(input(
"Enter value for y: "
))
z=float(input(
"Enter value for z: "
))
C=math.fabs(math.exp(x) + math.pow(y,
3
))/ (math.pow(y,z) - math.sqrt(z))
print
("Value of C is ", C)