Tips : The way to set pairs from iterations in match of index.
2028 ワード
returns zip object
list_a = [1,2,3]
list_b = [4,5,6]
tup_a = ('a','b','c')
tup_b = ('d','e','f')
for pair in zip(list_a, list_b, tup_a, tup_b):
print(pair)
(1, 4, 'a', 'd')
(2, 5, 'b', 'e')
(3, 6, 'c', 'f')
Reference
この問題について(Tips : The way to set pairs from iterations in match of index.), 我々は、より多くの情報をここで見つけました https://velog.io/@ziwe_ek/Tips-The-way-to-set-paired-tuple-from-iterations-in-match-indexテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol