Python Arrays: What Is An Array?
Python Arrays: What Is An Array?
Note: Python does not have built-in support for Arrays, but Python Lists can be used instead.
Example
What is an Array?
An array is a special variable, which can hold more than one value at a time.
If you have a list of items (a list of car names, for example), storing the cars in single variables
could look like this:
car1 = "Ford"
car2 = "Volvo"
car3 = "BMW"
However, what if you want to loop through the cars and find a specific one? And what if you had
not 3 cars, but 300?
An array can hold many values under a single name, and you can access the values by referring
to an index number.
x = cars[0]
Example
cars[0] = "Toyota"
Use the len() method to return the length of an array (the number of elements in an array).
Example
x = len(cars)
You can use the for in loop to loop through all the elements of an array.
Example
for x in cars:
print(x)
Adding Array Elements
Example
cars.append("Honda")
You can use the pop() method to remove an element from the array.
Example
cars.pop(1)
You can also use the remove() method to remove an element from the array.
Example
cars.remove("Volvo")
Array Methods
Python has a set of built-in methods that you can use on lists/arrays.
Method Description
extend() Add the elements of a list (or any iterable), to the end of the current list
index() Returns the index of the first element with the specified value