Metadata-Version: 2.1
Name: TrueFloat
Version: 1.0.2
Summary: True float. Without strange num.
Author-email: Furryich <thesavea@gmail.com>
Project-URL: Homepage, https://github.com/UserForBruteer/TrueFloat_py
Project-URL: Issues, https://github.com/UserForBruteer/TrueFloat_py/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# True Float Library #
## What is this? ##
The module help you don't catch strange numbers when you use float numbers

### Using ###
Using the library is as simple and convenient as possible:
Let's import it first:
First, import everything from the library (use the `from `...` import *` construct).

Examples of all operations:

function `tf.plus(first, second)` do addition of 2 numbers
#### Example: ####
    print(tf.plus(1.32, 1.23))
return float: 1.5

function `tf.minus(first, second)` do subtraction of 2 numbers
#### Example: ####
    print(tf.plus(1.32, 1.23))
return float: 0.09

function `tf.multiply(first, second)` do multiplication of 2 numbers
#### Example: ####
    print(tf.multiply(1.32, 1.23))
return float: 1,6236

function `tf.division(first, second)` do division  of 2 numbers
#### Example: ####
    print(tf.division(1.32, 1.23))
return float: 1.073170731707317

## developed by: [_furryich](https://github.com/UserForBruteer)
