demo_ref_zip2.py:
a = ("John", "Charles", "Mike") b = ("Jenny", "Christy", "Monica", "Vicky") x = zip(a, b) #use the tuple() function to display a readable version of the result: print(tuple(x))
C:\Users\My Name>python demo_zip2.py
(('John', 'Jenny'), ('Charles', 'Christy'), ('Mike', 'Monica'))