Guido van Rossum wrote: > for (x in A, y in B): > > could just as well be meant as a shortcut for > > for x in A: > for y in B:
Well, the parens around the whole thing make it look like a single tuple to me. But that could just be because I already know what it's supposed to mean. Ultimately it would be something you just have to learn, like the meaning of zip(). -- Greg _______________________________________________ Python-3000 mailing list Python-3000@python.org http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com