Metadata-Version: 2.4
Name: FluCutie
Version: 1.0.1
Summary: A simple library of useful functions for working with lists and numbers
Author-email: Flu3f <belownekit1@gmail.com>
License: MIT
Keywords: utils,lists,numbers,helpers
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
Dynamic: license-file

**1. toList;**

input: number

output: list

Converts number into list



**2. numLen;**

input: number, token (optional)

output: number

token: \*no token\* (length of number without dot), before (length of number before dot), after (length of number after dot)

Checks the length of a number



**3. toNum;**

input: list

output: number

Converts list into a number



**4. toWord;**

input: list

output: string

Converts list into a string



**5. delRepeat;**

input: list

output: list

Delete duplicate numbers



**6. same;**

input: list, list

output: bool

Checks if lists are identical


**7. flatten;**

input: list

output: list
Expands all lists into one


**8. chunks;**

input: list, number

output: list

Splits the list into chunks


**9. is\_sorted;**

input: list

output: bool

Checks if the list is sorted



**10. between;**

input: number (1), number (2), number (3)

output: bool

Checks if the first number is between the other two



**11. rotate;**

input: list, number

output: list

Shifts each element of a list back by a number

