This question has probably been asked here before but me being new to python and lack of better keywords to search led me to ask the question.
I have two lists:
list1 = ['John', 'Don', 'Sam']
list2 = ['Melissa', 'Amber', 'Liz']
couples = [x + ' and ' y for x in list1 y in list2] # I can't do that
My couples list should look like this:
['John and Melissa', 'Don and Amber', 'Sam and Liz']
How do I concatenate this two lists that way?
Thanks in advance