Concept Flow - zip() function
Start with two or more lists
Take first element from each list
Group these elements into a tuple
Take second element from each list
Group these elements into a tuple
Stop when shortest list ends
Return list of tuples
zip() takes elements from multiple lists one by one, groups them into tuples, and stops when the shortest list runs out.