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

Uploaded Python 3

File details

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

File metadata

  • Download URL: simple_calculator_tc2-1.1.tar.gz
  • Upload date:
  • Size: 3.7 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.1.tar.gz
Algorithm Hash digest
SHA256 cd4e04c574691a52294fb3084b50d83542503ec17ce1c75e569dbff7e26fa144
MD5 b3fc84f9362f55df19b1696102544569
BLAKE2b-256 3a48a3e227e4f43cf152f30edb3cc7aaa1465b724416d4c059bdcedad7aa8292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simple_calculator_tc2-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 19b72a3d987356a6ee306c6cd46c8bf88b53862caa140ff9df7371b2c5c3ee5a
MD5 f5331ee69fbc1e61a40fec8c97f33179
BLAKE2b-256 72371618850cbcbaec616526d138966b22fc0aadfbdb163bbcf231bf2e1270bf

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