Question: How would you create a list of tuples matching these lists of characters and actors?

  1. `[(x,y)] for x in characters for y in actors]`
  2. `list(zip(characters, actors))`

  3. `{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))`