The calculator program prompts the user for two numbers and an operation. Depending on the operation chosen (add + , sub - , mul * , div / ), it performs the corresponding arithmetic operation and displays the result.
A simple command-line calculator written in Python. This calculator performs basic arithmetic operations like addition, subtraction, multiplication, and division.
- Performs addition, subtraction, multiplication, and division.
- Takes in user input for numbers and operation.
- Handles basic error checking for invalid inputs.