Python Programming - Dictionaries - Discussion

Discussion Forum : Dictionaries - General Questions (Q.No. 13)
13.
How do you get a list of all values in a dictionary?
dictionary.all_values()
dictionary.get_values()
dictionary.values()
dictionary.extract_values()
Answer: Option
Explanation:
The values() method returns a list of all values in a dictionary.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.