Question: Q6. Code for the following outputs Code the class named 'Calculator' that outputs the result as shown. class Calculator: Test results: In [2]: calc1 =
Code the class named 'Calculator' that outputs the result as shown. class Calculator: Test results: In [2]: calc1 = Calculator(5,3) calc2 = Calculator(10,2) In [3]: print(calci. sum()) print(calci.subtract() print(calci.product()) print(calc1. divide()) 8 2 15 1.6666666666666667 In [4]: print(calc2.sum()) print(calc2.subtract() print(calc2.product() print(calc2.divide) 12 8 20 5.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
