CLI-based calculator built using Python functions. Supports addition, subtraction, multiplication, and division with user input handling.
This project is a simple command-line calculator built using Python. It performs basic arithmetic operations using functions.
- Addition
- Subtraction
- Multiplication
- Division
- User input handling
- Operation selection using conditions
- Functions
- Parameters & Arguments
- Return values
- Conditional statements (if-elif)
- User input handling
- Open the file in VS Code or any Python IDE
- Run the program
- Enter two numbers
- Choose operation (+, -, *, /)
- Get the result
Enter a: 5 Enter b: 3 Enter operation: + Output: 8
Santhosh K M