A simple calculator program built in Python as part of Day 10 of the 100 Days of Code: Python Bootcamp by Angela Yu.
The user can perform basic arithmetic operations in a loop until they choose to exit.
This calculator allows users to perform operations such as addition, subtraction, multiplication, and division.
The program is interactive and runs in the terminal, letting the user continue calculations with the previous result or start a new one.
- Python 3
- Supports addition, subtraction, multiplication, and division
- Runs continuously until the user exits
- Allows the user to continue calculating with the last result
- Clean, simple command-line interface
- Make sure Python 3 is installed on your system.
- Clone or download this repository.
- Open your terminal, navigate to the project folder, and run:
python main.py

Through this project, I practiced:
-
Defining and using functions
-
Storing functions in a dictionary
-
Loops for continuous user interaction
-
Handling basic math operations
This project is for educational purposes only and was created as part of Angela Yu's 100 Days of Code: Python Bootcamp. Not for commercial use.