https://github.com/tecnosamba21/arrays-library-for-python
A library made in pure python for making easier the work with arrays
https://github.com/tecnosamba21/arrays-library-for-python
arrays library python python-array python-library
Last synced: 3 months ago
JSON representation
A library made in pure python for making easier the work with arrays
- Host: GitHub
- URL: https://github.com/tecnosamba21/arrays-library-for-python
- Owner: Tecnosamba21
- Created: 2024-06-25T11:44:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T11:44:57.000Z (8 months ago)
- Last Synced: 2025-03-25T18:43:01.158Z (7 months ago)
- Topics: arrays, library, python, python-array, python-library
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arrays_Utilities-base
A library created by TecnoSamba21I know that working with arrays in python is so hard, so I made a library to make easier this work.
I present you my new library called "Array_utilities-base"! A library made in pure python to work with arrays and lists. Now, you're not going to spend a lot of time to (for example) search a element in a list!
*Commands:*
- `__getInfoLocalArray__(Array)`: Get information about an array
- `delete(number, Array)`: Delete an element of an array
- `show(Array)`: Print an array in a terminal
- `search(Array,searching)`: Search if an element is in an array (if yes return true else return false, use it with a print or a bool type variable)
- `getIdentification(Array, Object)`: Get the position of an element in a array## Example
~~~python
#/bin/python3import functions
array = ['hello','world']
def isanelement(element):
return search(array, element)print(isanelement('hello'))
show(array)
~~~