If I have
colours = [ "red", "green", "yellow"]
animals = [ "mouse", "tiger", "elephant" ]
coloured_animals = [ (x,y) for x in colours for y in things ]
What do I need to add so that the list comprehension returns ("red","mouse"), ("green","tiger"),("yellow","elephant") instead of all pairings?