Q. How can you get all the keys from a dictionary?
β
Correct Answer: (A)
dict.keys()
Explanation: `keys()` returns all keys from a dictionary.