Metadata-Version: 2.1
Name: BCalc
Version: 1.0.1
Summary: A Calculator with many uses
Home-page: https://modules.breezecodes.com
Author: Jace Billingsley
Author-email: jacebphotography@outlook.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown

List of functions:

**Notice** Add 'p' infront of any function to make it automaticly print, ex: 'padd(1,2)'


add(x,y)
adds x and y

sub(x,y)
subtracts y from x

mult(x,y)
multiplys x by y

div(x,y)
divides x by y

average(list)
takes the numbers of the list variable and averages them out

exponent(x,y)
x to the power of y

compare(x,y)
compares x to y, 'x < y', 'x > y', 'x = y'

isequal(x,y)
Returns 'Equal' if x and y are equal or 'Not Equal' if x and y are not equal

