Zip Three Lists Together

Combine the three lists: names, scores, and cities by pairing corresponding elements using zip(). Store the result in a variable called info, as a list of tuples, where each tuple contains the name, score, and city from the three lists.
Python
Setting up Python environment...
Output