is it possible to traverse two lists simulatenously using python

Terry Reedy tjreedy at udel.edu
Fri May 1 21:29:26 EDT 2009


mobiledreamers at gmail.com wrote:
> Python
> for i,j in topgirls, richgirls:
>     print i,j

for i,y in zip(a,b): ...




More information about the Python-list mailing list