Combining Lists: The Zip Function Python

Combining Lists: The Zip Function Python

In Python, we have an assortment of built-in functions that allow us to build our programs faster and cleaner. One of those functions is zip()

The zip() function allows us to quickly combine associated data-sets without needing to rely on multi-dimensional lists. While zip() can work with many different scenarios, we are going to explore only a single one in this article. 

Let’s use a list of student names and associated heights as our example data set:

  • Jenny is 61 inches tall
  • Alexus is 70 inches tall
  • Sam is 67 inches tall
  • Grace is 64 inches tall

Suppose that we already had a list of names and a list of heights:

No alt text provided for this image

If we wanted to create a nested list that paired each name with a height, we could use the built-in function zip()

The zip() function takes two (or more) lists as inputs and returns an object that contains a list of pairs. Each pair contains one element from each of the inputs. This is how we would do it for our names and heights lists:

No alt text provided for this image

If we were to then examine this new variable names_and_heights, we would find it looks a bit strange:

No alt text provided for this image

Would output: 

<zip object at 0x7f1631e86b48>        

This zip object contains the location of this variable in our computer’s memory. Don’t worry though, it is fairly simple to convert this object into a useable list by using the built-in function list():

No alt text provided for this image

Outputs: 

[('Jenny', 61), ('Alexus', 70), ('Sam', 67), ('Grace', 64)]        

Notice two things: 

  1. Our data set has been converted from a zip memory object to an actual list (denoted by [ ])
  2. Our inner lists don’t use square brackets [ ] around the values. This is because they have been converted into tuples (an immutable type of list).

#codecademy

To view or add a comment, sign in

More articles by Ahmed Khaleel

Others also viewed

Explore topics