“Dicionário Python Get Key By Value” Respostas de código

Dicionário Python Get Key By Value

d = {'key1': 'aaa', 'key2': 'aaa', 'key3': 'bbb'}

keys = [k for k, v in d.items() if v == 'aaa']
print(keys)
# ['key1', 'key2']

keys = [k for k, v in d.items() if v == 'bbb']
print(keys)
# ['key3']

keys = [k for k, v in d.items() if v == 'xxx']
print(keys)
# []
Lazy Lion

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

Encontre o valor da chave no dicionário Python

d = {'key1': 'val1', 'key2': 'val2', 'key3': 'val3'}

print(d['key1'])
# val1
Uptight Unicorn

Respostas semelhantes a “Dicionário Python Get Key By Value”

Perguntas semelhantes a “Dicionário Python Get Key By Value”

Mais respostas relacionadas para “Dicionário Python Get Key By Value” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código