Python Dictionary values()

The values() method returns a view object that displays a list of all the values in the dictionary.

Example


Syntax of Dictionary values()

The syntax of values() is:

dictionary.values()

values() Parameters

values() method doesn't take any parameters.


Return value from values()

values() method returns a view object that displays a list of all values in a given dictionary.


Example 1: Get all values from the dictionary

Output

dict_values([2, 4, 3])

Example 2: How values() works when a dictionary is modified?

Output

Original items: dict_values([2, 4, 3])
Updated items: dict_values([4, 3])

The view object values doesn't itself return a list of sales item values but it returns a view of all values of the dictionary.

If the list is updated at any time, the changes are reflected on the view object itself, as shown in the above program.