Question: Suppose you have the following code snippet and want to extract a list with only the letters. Which fragment of code will _


  1. `letters = my_dictionary.keys()`
  2. `letters = [letter for (letter, number) in my_dictionary.items()]`
  3. `letters4 = list(my_dictionary)`

Answer: The correct answer of the above question is Option A: