Question: Problem Description: Write an interactive application in Python to mimic a calculator. In the first assignment you were asked to output the sum, difference, product
Problem Description: Write an interactive application in Python to mimic a calculator. In the first assignment you were asked to output the sum, difference, product and quotient of two numbers. In this assignment you will ask the user for their choice of operator (+, ,*,/), and output the corresponding answer. If the second number is 0 for the division operator, you must output an error message saying that division by 0 is not possible. Inputs It should take as input 2 integers and a character for the operator. Output It should check for the operator and output the result. If it is the division operator, it should check to see if the second number is 0 and output an error message and quit the program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
