Question: What is the proper way to write a list comprehension that represents all the keys in this dictionary?
- `fruit_names = [x in fruits.keys() for x]`
- `fruit_names = for x in fruits.keys() *`
- `fruit_names = [x for x in fruits.keys()]`
- `fruit_names = x for x in fruits.keys()`
Answer: The correct answer of the above question is Option C:`fruit_names = [x for x in fruits.keys()]`