a = [1, 2, 3, 4, 5] b = ['ali', 'veli', 'selami', 'ayşe', 'fatma'] c = [10, 20, 30, 40, 50] for t in zip(a, b, c): print(t)