valores() es un método incorporado en el lenguaje de programación Python que devuelve un objeto de vista. El objeto de vista contiene los valores del diccionario, como una lista. Si usa el método type() en el valor de retorno, obtiene «objeto dict_values». Debe emitirse para obtener la lista real.
Sintaxis:
dictionary_name.values()
Parámetros:
No hay parámetros
Devoluciones:
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.
Código # 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())
Producción:
dict_values([2, 3, 4]) dict_values(['5', '3', '5'])
Aplicación Práctica:
Dado el nombre y el salario, devuelva el salario total de todos los empleados.
Código #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
Producción:
115000