Skip to main content

Calculator with memory, supports + - / * sqrt()

Project description

Calculator: Simple Memory-Based Arithmetic Module

A tiny Python class that keeps a running memory and performs validated arithmetic operations.

This document explains the module, how to install/use it. It also includes a mini‑tutorial in English


Features

  • Calculator.memory : read only property exposing the current memory value.
  • Validated inputs: only int or float are accepted; other types raise TypeError.
  • Arithmetic: add, subtract, multiply, divide.
  • Utilities: sqrt (adds sqrt(n) to memory), memory_reset (resets to 0.0).
  • Clear, Google style docstrings and helpful error messages.

Installation

This is a single file module. You can:

  • drop calculator.py into your project, or
  • install it as an editable local package if you later add pyproject.toml/setup.cfg.

Python version: 3.9+ recommended.


Quick Start (Tutorial)

1) Import and construct

from calculator import Calculator

c = Calculator()
print(c.memory)   # 0.0

2) Basic operations

c.add(10)         # -> 10.0
c.subtract(3.5)   # -> 6.5
c.multiply(2)     # -> 13.0
c.divide(4)       # -> 3.25

3) Square root accumulation

c.sqrt(9)         # adds 3, -> 6.25

4) Reset

c.memory_reset()  # -> 0.0

5) Defensive behavior (errors)

try:
    c.add("3")  # not allowed
except TypeError as e:
    print(e)    # Argument must be an int or float

try:
    c.divide(0) # division by zero
except ZeroDivisionError as e:
    print(e)

try:
    c.sqrt(-1)  # negative sqrt
except ValueError as e:
    print(e)    # Cannot take square root of a negative real number

# read-only property
try:
    c.memory = 42
except AttributeError as e:
    print(e)    # memory is read-only

API Reference

Class: Calculator()

  • Properties
    • memory: float : read only; returns the current memory value.
  • Methods
    • add(n: float) -> float : Adds n to memory.
    • subtract(n: float) -> float : Subtracts n from memory.
    • multiply(n: float) -> float : Multiplies memory by n.
    • divide(n: float) -> float : Divides memory by n. Raises ZeroDivisionError if n == 0.
    • sqrt(n: float) -> float : Adds sqrt(n) to memory. Raises ValueError if n < 0.
    • memory_reset() -> float :Resets memory to 0.0.

Validation rule: a private helper _to_float converts and validates inputs. Only int and float are accepted


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_calculator_tc2-1.3.1.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_calculator_tc2-1.3.1-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file simple_calculator_tc2-1.3.1.tar.gz.

File metadata

  • Download URL: simple_calculator_tc2-1.3.1.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for simple_calculator_tc2-1.3.1.tar.gz
Algorithm Hash digest
SHA256 d4b689fc80959e5abe9a0b94aa1c07c39ee1b5956cfaaebb85c2508fb9357b94
MD5 6a8ad90f77faee5de8a1b357d3cf739d
BLAKE2b-256 6e05b784597aa36a2f8869c7bd60ed93a65f8ef229bd645c39c389e0aa2a0135

See more details on using hashes here.

File details

Details for the file simple_calculator_tc2-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_calculator_tc2-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dd54e891b13f4f2d13897dded5539c791f044c72acdd915f73e1d8625d3000a6
MD5 900924eae85d8a727b700f7b183126a6
BLAKE2b-256 33c54c6f91b1214aa4082c575f43ea0e8b9eeda649ddebb2310bea5018eac068

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page