Python dictionary | values()
values() is an inbuilt method in Python programming language that returns a list of all the values available in a given dictionary.
Syntax:
dictionary_name.values()
Parameters:
There are no parameters
Returns:
returns a list of all the values available in a given dictionary. the values have been stored in a reversed manner.
Error:
As we are not passing any parameters there is no scope for any error.
Code#1:
# Python3 program for illustration # of values() method of dictionary # numerical values dictionary = {"raj": 2, "striver": 3, "vikram": 4} print(dictionary.values()) # string values dictionary = {"geeks": "5", "for": "3", "geeks": "5"} print(dictionary.values()) |
chevron_right
filter_none
Output:
dict_values([2, 3, 4]) dict_values(['5', '3'])
Practical Application:
Given name and salary, return the total salary of all employees.
Code#2:
# Python3 program for illustration # of values() method in finding total salary # stores name and corresponding salaries salary = {"raj" : 50000, "striver" : 60000, "vikram" : 5000} # stores the salaries only list1 = salary.values() print(sum(list1)) # prints the sum of all salaries |
chevron_right
filter_none
Output:
115000
Recommended Posts:
- Python | Max/Min of tuple dictionary values
- Python | Sum values for each key in nested dictionary
- Python | Check for None values in given dictionary
- Python | N largest values in dictionary
- Python | Initialize dictionary with None values
- Python | Selective key values in dictionary
- Python | Check if all values are 0 in dictionary
- Python | Type conversion in dictionary values
- Python | Grouping list values into dictionary
- Python | Get Unique values from list of dictionary
- Map function and Dictionary in Python to sum ASCII values
- Python | Combining values from dictionary of list
- Python | Summation of dictionary list values
- Python | Filter the negative values from given dictionary
- Python | Create a dictionary using list with none values
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



