Skip to main content

An Advanved Calculator with Trignometry and Other Functions

Project description

AdvancedCalc

An Advanced Calculator to Calculate Advanced Methods like Average, Trignometry, HCF, LCM easily

Installation

AdvancedCalc requires an installation of python 3.6 or greater, as well as pip. Pip is typically bundled with python installations, and you can find options for how to install python at https://python.org.

To Install from pypi with pip:

pip install advancedcalc

Sometime, the pypi release becomes slightly outdated. To install from the source with pip:

pip install git+https://github.com/programmerayush7/advancedcalc/

Quick Start

Adding Numbers

import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 10
sum = calculator.add(5, 5)
print(sum)

Subtracting Numbers

import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 5
answer = calculator.add(10, 5)
print(answer)

Using auto_arrange Parameter

The auto_arrange parameter is usually used to pretend to get negative answers (eg. -1, -6, etc.).

  1. Without auto_arrange
import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns -1
answer = calculator.subtract(4, 5)
print(answer)
  1. With auto_arrange
import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 1
answer = calculator.add(4, 5, auto_arrange = True)
print(answer)

Multiplying Numbers

Multiply 2 Numbers using this Function

impport AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 25
product = calculator.add(5, 5)
print(product)

Dividing Numbers

Divide 2 Numbers using this Function

import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 2
quotient = calculator.add(10, 5)
print(quotient)

Finding Remainders

Find the Remainder from the Division of 2 Numbers using this function

import AdvancedCalc
calculator = AdvancedCalc.Calculator

# returns 2
remainder = calculator.remainder(10, 4)
print(remainder)

Advanced Functions

Average Of Numbers

Find the Average of Numbers in a List

from AdvancedCalc import Advanced

numbers = [1, 2, 3, 4, 5]

# Returns 3
average = Advanced.average(numbers)

print(average)

Cube

Find the Cube of a Number using this function

from AdvancedCalc import Advanced

# returns 8
cube = Advanced.cube(2)

print(cube)

Percentage

lets try finding 10 percent of 200 Note: This Function returns a float, so if you want a number, you can convert it into an int.

from AdvancedCalc import Advanced

# returns 20.0
percent = Advanced.percent(10, 200)

print(percent)

Factors

Find all Factors of a Specific Numbers using this function

from AdvancedCalc import Advanced

# returns a list of factors
factors = Advanced.factors(10)

print(factors)

HFC

Find the Highest Common Factor of 2 Numbers

from AdvancedCalc import Advanced

# returns 10
hfc = Advanced.hfc(10, 20)

print(hfc)

LCM

Find the LCM of 2 Numbers using this Function.

from AdvancedCalc import Advanced

# returns 11
lcm = Advanced.lcm(5, 6)

print(lcm)

Changelog

0.0.3

  • Added Advanced Functions
  • Modified Simple Functions
  • Modified README.md
  • Fixed Installing with PIP Error

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

advancedcalc-0.0.3.tar.gz (4.3 kB view hashes)

Uploaded Source

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