定義:
つまり,複数のイテラブルから同じインデックス位置にある要素を組み合わせてタプルを生成し,それらのタプルを返す.
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
# zip()関数を使って2つのリストを組み合わせる
zipped = zip(list1, list2)
# 結果をリストとして取得
result = list(zipped)
print(result)
出力は次のようになる.
[(1, 'a'), (2, 'b'), (3, 'c')]
Mathematics is the language with which God has written the universe.