Question: How would you create a list of tuples matching these lists of characters and actors?
- `[(x,y)] for x in characters for y in actors]`
- `list(zip(characters, actors))`
- `{x:y for x in characters for y in actors}`
Answer: The correct answer of the above question is Option B:`list(zip(characters, actors))`