“Chave de retorno do Value Dictionary Python” Respostas de código

Obtenha valor e chave do dict python

myDict = {
    "message": "Hello Grepper!"
}
for key, value in myDict.items():
    print(key)      #Output: message
    print(value)    #Output: Hello Grepper!
Sore Shark

Obtenha a chave do Value Dictionary py

dict = {1: 'a', 2: 'b'}
value = 'a'
key = [x for x in dict.keys() if dict[x] == value][0]
MaxBruss

Chave de retorno do Value Dictionary Python

cars = {'ford': 10, 'opel': 5 }

def get_val(key):
    return cars[key]

ford = get_val('ford')
print(ford)
Super Shark

Respostas semelhantes a “Chave de retorno do Value Dictionary Python”

Perguntas semelhantes a “Chave de retorno do Value Dictionary Python”

Mais respostas relacionadas para “Chave de retorno do Value Dictionary Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código