On 06.03.2016 19:51, Tim Chase wrote:
So it looks like one needs to eitherresults = reversed(list(zip(...))) or, more efficiently (doing it with one less duplication of the list) results = list(zip(...)) results.reverse()
Nice idea. :) Unfortunately, I used it while drafting some unittests and I love SHORT oneliners:
for c in reversed(zip(ascii_lowercase, ascii_uppercase)):
...
ooops. :-/
Best,
Sven
--
https://mail.python.org/mailman/listinfo/python-list
