Metadata-Version: 2.1
Name: numering
Version: 0.9
Summary: UNKNOWN
Home-page: UNKNOWN
Author: sudo
License: MIT
Keywords: numering
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.rst

# Numering
### Yet another number package.


+ ## random_float
    - random float number in range of A and B
  
+ ## random_element
    - random element from list

+ ## sizeof
    - size of an element

## Examples

### Generating random float number
```py
import numering

a, b = 1, 2

print(numering.random_float(a, b), decimals=3)

# 1.736
```

### Selecting random element from list
```py
import numering

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

print(numering.random_element(my_list))

# 3
```

### Getting size of element (list, tuple, dict)
```py
import numering

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

print(numering.sizeof(mylist))

# 4
```

