Skip to content

A library made in pure python for making easier the work with arrays

Notifications You must be signed in to change notification settings

Tecnosamba21/Arrays-library-for-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arrays_Utilities-base

A library created by Nicolás Santísima Trinidad Santín

I 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

#/bin/python3

import functions

array = ['hello','world']

def isanelement(element):
  return search(array, element)

print(isanelement('hello'))

show(array)

About

A library made in pure python for making easier the work with arrays

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages