>>> a = [1,2,3,4]
>>> b = [1,2,3,4]
>>>
>>> zip(a,b)
[(1, 1), (2, 2), (3, 3), (4, 4)]
>>>
>>> for i,j in zip(a,b):
...     print i
...     print j

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to