hmm, there's lots of ways, huh? you can use itertools.zip instead of builtin zip, or do:
map(None, list1, list2) , which will pad the shorter one to match the longer one. -- http://mail.python.org/mailman/listinfo/python-list
hmm, there's lots of ways, huh? you can use itertools.zip instead of builtin zip, or do:
map(None, list1, list2) , which will pad the shorter one to match the longer one. -- http://mail.python.org/mailman/listinfo/python-list