Question: Define a function print _ difference _ of _ 2 ( ) that has two parameters, and outputs 'Result: ' followed by the result of

Define a function print_difference_of_2() that has two parameters, and outputs 'Result: ' followed by the result of subtracting the first parameter by the second parameter with a precision of two digits. print_difference_of_2() should not return any value. ''' Your code goes here '''
input_A = float(input())
input_B = float(input())
input_X = float(input())
input_Y = float(input())
print_difference_of_2(input_A, input_B)
print_difference_of_2(input_X, input_Y)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!