.values()
The .values()
method returns all of its values of a Python dictionary in a view object that will refect any changes to the dictionary values. It takes no arguments.
Syntax
dictionary.values()
Codebyte Example
The following example creates a dictionary, then prints all the values: