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.tar.gz (2.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-py3-none-any.whl (2.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: simple_calculator_tc2-1.3.tar.gz
  • Upload date:
  • Size: 2.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.tar.gz
Algorithm Hash digest
SHA256 7fd4b750c5e74b303f7622b94cf46d3399754e7d16953f0253a7a49ed9376723
MD5 cf66b4b4c4906f45558a47e2a832b16c
BLAKE2b-256 83223628584d220b2f3a39dadb9c903cc74841dcb37ea89afcb13c37d1052f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simple_calculator_tc2-1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 16402a1540edbb2bb471cd017ace01cd00efca604bbccd22eea2dab297e3efae
MD5 6f6286f8ef254dadfe8a2c7eb34010e6
BLAKE2b-256 163572f681f0ddb32db6253b1f850c21bb8c5907fbae5c2895632720e70dcdfe

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