Releases: NmaCharis/Calculator-Project
Releases · NmaCharis/Calculator-Project
v1.0.0- Simple Python Calculator
v1.0.0 – Simple Python Calculator
First stable release of a beginner-friendly Python CLI calculator built with functions and clear input/output prompts.
Features
- Core operations: add, subtract, multiply, divide
- Extra operations: floor division, exponent (power), modulus
- Accepts floats and integers
- Graceful handling of divide-by-zero
- Simple, readable functions for each operation
How to run
- Ensure Python 3.8+ is installed.
- Clone or download the repo.
- From the project folder, run:
python Calculator.py
(or)
python3 Calculator.py
Example
Enter first number: 10
Enter second number: 2
Enter the operation: divide
RESULT: 5.0
Files
- Calculator.py – main program
- README.md – project overview and usage
- Calculator-Project-main.zip – packaged source
Known limitations
- No parentheses/precedence parsing (single operation at a time)
- No unit tests yet
Versioning
- Semantic versioning: This is v1.0.0 (initial stable).