Question: Suppose you have the following code snippet and want to extract a list with only the letters. Which fragment of code will _
- `letters = my_dictionary.keys()`
- `letters = [letter for (letter, number) in my_dictionary.items()]`
- `letters4 = list(my_dictionary)`
Answer: The correct answer of the above question is Option A: