複数のリストをまとめてループ処理

2018/03/17

Python2.7.8

list1 = [1, 2, 3]
list2 = [4, 5, 6]
for (a, b) in zip(list1, list2):
    print a,b

#結果
#1 4
#2 5
#3 6


forループで便利な zip, enumerate関数
https://python.civic-apps.com/zip-enumerate/