Metadata-Version: 2.4
Name: FluCutie
Version: 1.1.0
Summary: A simple library that adds missing functions for working with numbers and lists.
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

**FluCutie** - a simple python library that simplifies some operations with numbers and lists.



\## 1. Into something
**toList** - Converts a number to a list

**toNum** - Converts a list to a number

**toWord** - Converts a list to a string



\## 2. is\_ ask

**is\_sorted** - Checks if the list is sorted

**is\_number** - Checks if the input is a number

**is\_palindrome** - Checks if the input is a palindrome

**is\_prime** - Checks if the number is prime



\## 3. Functions for working with lists

**delRepeat** - Removes duplicate values

**same** - Сhecks if elements in lists are identical

**flatten** - Removes nested lists

**chunks** - Splits the list into chunks
**rotate** - Moves each element of the list to the left by a specified number of steps

**find\_dublicates** - Finds duplicate elements in a list

**same\_quantity** - Checks if the number of elements in a list is the same

**mode** - Most repeated number

**median** - Median of numbers

**difference** - Calculates the difference between two lists



\## 4. Functions for working with numbers

**numLen** - Calculates the length of a number
**between** - Checks if a number is between two other numbers

**digit\_sum** - Calculates the sum of the digits of a number

**f** - Calculates the factorial of a number

**reverse** - Reverse input

