In this short Python tip, I show you how to use the built-in function zip() in order to loop through multiple lists together. This Python tutorial is meant for beginners that are learning Python. The zip() function loops through the lists together and for every loop returns the next element from each list as a tuple. This allows you to give clean descriptive names to your variables.