Result Size: 625 x 571
demo_ref_zip.py:
x
 
a = ("John", "Charles", "Mike")
b = ("Jenny", "Christy", "Monica")
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_zip.py
(('John', 'Jenny'), ('Charles', 'Christy'), ('Mike', 'Monica'))