python の便利なレファレンス

便利

http://www.shido.info/py/python2.html

zip(a,b)はa,bまとめて、
イテレート(ループ)
できる。

>|python|

for i,j in zip(a,b):
print i,j

|