Assign a variable solveEquation with a function expression that has three parameters (x, y, and z) and returns the result of evaluating the expression z * 3 * y - x.

Respuesta :

Answer:

def func1(x, y, z):

   return z*3*y - x

x= int(input("Enter x"))

y= int(input("Enter y"))

z= int(input("Enterz"))

solveEquation=func1(x, y, z)

print (solveEquation)

Explanation:

Please check the answer section.

ACCESS MORE