2つのリストを処理

1つの方法→ zip()

サンプル:split で生成した2つのリスト

a = 'a,b,c,d'
b = '1,2,3,4'

for x, y in zip(a.split(','), b.split(',')):
    print('%s - %s' % (x, y))

print 結果

a - 1
b - 2
c - 3
d - 4

tuple のリストにする。

c = [(x, y) for x, y in zip(a.split(','), b.split(','))]
[('a', '1'), ('b', '2'), ('c', '3'), ('d', '4')]