For example, I have a list like this:
list1 = [good, bad, tall, big] list2 = [boy, girl, guy, man]
and I want to make a list like this:
Using zip
list3 = [] for l1,l2 in zip(list1,list2): list3.append(l1+l2)
list3 = ['goodboy', 'badgirl', 'tallguy', 'bigman']