Skip to content

Releases: NmaCharis/Calculator-Project

v1.0.0- Simple Python Calculator

12 Sep 22:37
0656714

Choose a tag to compare

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

  1. Ensure Python 3.8+ is installed.
  2. Clone or download the repo.
  3. 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).