Skip to main content

Simple calculator in python

Project description

Simple Calculator

What is this?

A pretty straight forward calculator for Python that can do the following:

  • Stores current value of number until it is reset
  • Addition / Subtraction
  • Multiplication / Division
  • Calculate nth root of a number

Installation:

pip install turing_calculator

Usage

from turing_calculator import Calculator Initialise: calc = Calculator() Add 5 to current value: calc.add(5) Subtract 3: calc.subtract(3) Multiply by 25: calc.multiply(25) Divide by 2: calc.divide(2) Nth Root (In this case, square root): calc.root(2) Current Value: calc.val Reset to zero: calc.reset()

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

turing_calculator-0.1.0.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

turing_calculator-0.1.0-py2.py3-none-any.whl (1.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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