I have two lists, the first of which is guaranteed to contain exactly one more item than the second. I would like to know the most Pythonic way to create a
I'm too old to be down with list comprehensions, so:
import operator list3 = reduce(operator.add, zip(list1, list2))