Question: I need to write a function that takes in 3 parameters, parameter_1, parameter_2, and parameter_3. It computes a value based upon the following formula and
I need to write a function that takes in 3 parameters, parameter_1, parameter_2, and parameter_3. It computes a value based upon the following formula and places it in the return_var variable:
return_var = (parameter_1 + parameter_2 * 47)/parameter_3
The value maintained in return_var variable must be returned by the function.

def main(): argA = int(input("Enter value for Argument A :")) argB = int(input("Enter value for Argument B : ")) argc = int(input("Enter value for Argument C: ")) #invoke the crazy_formula function #send in arga, argB and argC as arguments to function call #place value returned by function in the answer variable print("Answer from crazy_formula is", format(answer, ".2f") define the crazy_formula function def crazy_formula(..): main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
