Metadata-Version: 2.1
Name: basicmathfunctions
Version: 0.0.57
Summary: Basic math functions
Home-page: UNKNOWN
Author: Isaac Cobb
Author-email: cobbcoding@gmail.com
License: MIT
Description: This is a library with basic math functions, including adding two numbers, getting the value of pi, converting fahrenheit to celsius, converting celsius to fahrenheit, and much more!
        
        Install via pip
        ===============
        
        ```bash
        pip install basicmathfunctions
        ```
        
        Functions
        =========
        
        ```python
        add_two_numbers(number1, number2)
        ```
        - Add two numbers
        
        ```python
        subtract_two_numbers(number1, number2)
        ``` - Subtract two numbers
        
        ```python
        multiply_two_numbers(number1, number2)
        ```
        - Multiply two numbers
        
        ```python
        divide_two_numbers(number1, number2)
        ```
        - Divide two numbers
        
        ```python
        pi()
        ```
        - Get value of pi (to 4 decimal places)
        
        ```python
        the_power_of(number, power)
        ```
        - Get a number to the power of another number
        
        ```python
        sqrt(number)
        ```
        - Get the square root of a number
        
        ```python
        f_to_c(temperature)
        ```
        - Convert fahrenheit to celsius
        
        ```python
        c_to_f(temperature)
        ```
        - Convert celsius to fahrenheit
        
        Change Log
        ==========
        
        0.0.1 (4/28/2021)
        -----------------
        - First Release
Keywords: math
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
