a = [1, 2, 3, 4, 5] b = ['ali', 'veli', 'selami', 'ayşe', 'fatma'] for x, y in zip(a, b): print(x, y)