if I remember correctly, wasn't there a way to quickly iterate through
nested loops? Something like

a = { "a", "b", "c" }
b = { 4, 9, 13}
for (x, y) in someoperator(a, b):
        print(x, y)

You may be reaching for this thread:

http://mail.python.org/pipermail/python-list/2008-January/473650.html

where I offered this:

http://mail.python.org/pipermail/python-list/2008-January/473671.html

There were several other solutions -- be sure to pick your favorite accordingly.

-tkc



--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to