Learn How To Use Arrays In Python With Example

Aayushi Johari
Edureka
Published in
7 min readApr 5, 2019

--

In the immensely fast moving world, one needs resourceful coding techniques that could help the programmer to sum up voluminous codes in the simplest and most convenient ways. Arrays are one of the data structures that help you write a number of values into a single variable, thereby reducing the burden of memorizing an enormous number of variables. So let’s go ahead, and see how you can implement Arrays in Python.

Here’s an overview of the topics which explains all the aspects dealing with arrays:

  1. Why use Arrays in Python?
  2. What is an Array?
  3. Is Python list same as an Array?
  4. Creating an Array
  5. Accessing an Element
  6. Basic Array Operations
  • Adding/ Changing elements of an Array
  • Concatenation
  • Deleting / Removing elements from an Array
  • Looping through an array
  • Slicing

Why use Arrays in Python?

A combination of Arrays, together with Python could save you a lot of time. As mentioned earlier, arrays help you reduce the overall size of your code, while Python helps you get rid of problematic syntax, unlike other languages. For example: If you had to store integers from 1–100, you won’t be able to remember 100 variable names explicitly, therefore, you can save them easily using an array.

Now that you are aware of the importance of arrays in Python, let’s study more about it in detail.

What is an Array?

An array is basically a data structure which can hold more than one value at a time. It is a collection or ordered series of elements of the same type.

a=arr.array('d',[1.2,1.3,2.3])

We can loop through the array items easily and fetch the required values by just specifying the index number. Arrays are mutable(changeable) as well, therefore, you can perform various manipulations as required.

Now, there is always a question that comes up to our mind -

Is Python list same as an Array?

The ‘array’ data structure in core python is not very efficient or reliable. Therefore, when we talk about python arrays, we usually mean python lists.

However, python does provide Numpy Arrays which are a grid of values used in Data Science.

Creating an Array:

Arrays in Python can be created after importing the array module as follows -

→ import array as arr

The array(data type, value list) function takes two parameters, the first being the data type of the value to be stored and the second is the value list. The data type can be anything such as int, float, double, etc. Please make a note that arr is the alias name and is for ease of use. You can import without alias as well. There is another way to import the array module which is -

→ from array import *

This means you want to import all functions from the array module.

The following syntax is used to create an array.

Syntax:

#when you import using arr alias
a=arr.array(data type,value list)

OR

#when you import using *
a=array(data type,value list)

Example: a=arr.array( ‘d’ , [1.1 , 2.1 ,3.1] )

Here, the first parameter is ‘d’ which is a data type i.e. float and the values are specified as the next parameter.

Note: All values specified are of the type float. We cannot specify the values of different data types to a single array.

The following table shows you the various data types and their codes.

Accessing array elements :

To access array elements, you need to specify the index values. Indexing starts at 0 and not from 1. Hence, the index number is always 1 less than the length of the array.

Syntax:

Array_name[index value]

a=arr.array( 'd', [1.1 , 2.1 ,3.1] ) 
a[1]

Output:

2.1

The output returned is the value, present in the second place in our array which is 2.1.

Let us have a look at some of the basic array operations now.

Basic array operations :

There are many operations that can be performed on arrays which are as follows -

Finding the Length of an Array

Length of an array is the number of elements that are actually present in an array. You can make use of len() function to achieve this. The len() function returns an integer value that is equal to the number of elements present in that array.

Syntax:

→ len(array_name)

Example:

a=arr.array('d', [1.1 , 2.1 ,3.1] ) 
len(a)

Output:

3

This returns a value of 3 which is equal to the number of array elements.

Adding/ Changing elements of an Array:

We can add value to an array by using the append(), extend() and the insert (i,x) functions.

The append() function is used when we need to add a single element at the end of the array.

Example:

a=arr.array('d', [1.1 , 2.1 ,3.1] ) 
a.append(3.4)
print(a)

Output

array(‘d’, [1.1, 2.1, 3.1, 3.4])

The resultant array is the actual array with the new value added at the end of it. To add more than one element, you can use the extend() function. This function takes a list of elements as its parameter. The contents of this list are the elements to be added to the array.

Example:

a=arr.array('d', [1.1 , 2.1 ,3.1] ) 
a.extend([4.5,6.3,6.8])
print(a)

Output

array(‘d’, [1.1, 2.1, 3.1, 4.5, 6.3, 6.8])

The resulting array will contain all the 3 new elements added to the end of the array.

However, when you need to add a specific element at a particular position in the array, the insert(i,x) function can be used. This function inserts the element at the respective index in the array. It takes 2 parameters where the first parameter is the index where the element needs to be inserted and the second is the value.

Example:

a=arr.array('d', [1.1 , 2.1 ,3.1] ) 
a.insert(2,3.8)
print(a)

Output

array(‘d’, [1.1, 2.1, 3.8, 3.1])

The resulting array contains the value 3.8 at the 3rd position in the array.

Arrays can be merged as well by performing array concatenation.

Array Concatenation :

Any two arrays can be concatenated using the + symbol.

Example:

a=arr.array('d',[1.1 , 2.1 ,3.1,2.6,7.8])
b=arr.array('d',[3.7,8.6])
c=arr.array('d')
c=a+b
print("Array c = ",c)

Output -

Array c= array(‘d’, [1.1, 2.1, 3.1, 2.6, 7.8, 3.7, 8.6])

The resulting array c contains concatenated elements of arrays a and b.

Now, let us see how you can remove or delete items from an array.

Removing/ Deleting elements of an array:

Array elements can be removed using pop() or remove() method. The difference between these two functions is that the former returns the deleted value whereas the latter does not.

The pop() function takes either no parameter or the index value as its parameter. When no parameter is given, this function pops() the last element and returns it. When you explicitly supply the index value, the pop() function pops the required elements and returns it.

Example:

a=arr.array('d', [1.1, 2.2, 3.8, 3.1, 3.7, 1.2, 4.6]) 
print(a.pop())
print(a.pop(3))

Output -

4.6 
3.1

The first pop() function removes the last value 4.6 and returns the same while the second one pops the value at the 4th position which is 3.1 and returns the same.

The remove() function, on the other hand, is used to remove the value where we do not need the removed value to be returned. This function takes the element value itself as the parameter. If you give the index value in the parameter slot, it will throw an error.

Example:

a=arr.array('d',[1.1 , 2.1 ,3.1]) 
a.remove(1.1)
print(a)

Output -

array(‘d’, [2.1,3.1])

The output is an array containing all elements except 1.1.

When you want a specific range of values from an array, you can slice the array to return the same, as follows.

Slicing an array :

An array can be sliced using the : symbol. This returns a range of elements that we have specified by the index numbers.

Example:

a=arr.array('d',[1.1 , 2.1 ,3.1,2.6,7.8]) 
print(a[0:3])

Output

array(‘d’, [1.1, 2.1, 3.1])

The result will be elements present at 1st, 2nd and 3rd position in the array.

Looping through an array:

Using the for loop, we can loop through an array.

Example:

a=arr.array('d', [1.1, 2.2, 3.8, 3.1, 3.7, 1.2, 4.6])
print("All values")
for x in a:
print(x)
print("specific values")
for x in a[1:3]:
print(x)

Output

All values1.1
2.2
3.8
3.1
3.7
1.2
4.6
specific values
2.2
3.8

The above output shows the result using for loop. When we use for loop without any specific parameters, the result contains all the elements of the array given one at a time. In the second for loop, the result contains only the elements that are specified using the index values. Please note that the result does not contain the value at index number 3.

Hope you are clear with all that has been shared with you in this tutorial. This brings us to the end of our article on Arrays in Python. Make sure you practice as much as possible and revert your experience.

If you wish to check out more articles on the market’s most trending technologies like Artificial Intelligence, DevOps, Ethical Hacking, then you can refer to Edureka’s official site.

Do look out for other articles in this series which will explain the various other aspects of Python and Data Science.

1. Python Tutorial

2. Python Programming Language

3. Python Functions

4. File Handling in Python

5. Python Numpy Tutorial

6. Scikit Learn Machine Learning

7. Python Pandas Tutorial

8. Matplotlib Tutorial

9. Tkinter Tutorial

10. Requests Tutorial

11. PyGame Tutorial

12. OpenCV Tutorial

13. Web Scraping With Python

14. PyCharm Tutorial

15. Machine Learning Tutorial

16. Linear Regression Algorithm from scratch in Python

17. Python for Data Science

18. Loops in Python

19. Python RegEx

20. Python Projects

21. Machine Learning Projects

22. Sets in Python

23. Multithreading in Python

24. Python Interview Questions

25. Java vs Python

26. How To Become A Python Developer?

27. Python Lambda Functions

28. How Netflix uses Python?

29. What is Socket Programming in Python

30. Python Database Connection

31. Golang vs Python

32. Python Seaborn Tutorial

33. Python Career Opportunities

Originally published at https://www.edureka.co on April 5, 2019.

--

--

Aayushi Johari
Edureka

A technology enthusiast who likes writing about different technologies including Python, Data Science, Java, etc. and spreading knowledge.