X Tutup
first = ['Bucky', 'Tom', 'Taylor'] last = ['Roberts', 'Hanks', 'Swift'] names = zip(first, last) for a, b int names: print(a, b)
X Tutup