Answers for "find all keys with value python"

2

print all keys having same value

dict = {"Jim": "y", "Bob": "y", "Ravioli": "n"}
In [26]: [k for k,v in dict1.items() if v == 'y']
Out[26]: ['Bob', 'Jim']
Posted by: Guest on July-31-2020
1

get all keys and values from dictionary python

#python 3
for k,v in dict.items():
    print(k, v)
Posted by: Guest on July-31-2020

Code answers related to "find all keys with value python"

Python Answers by Framework

Browse Popular Code Answers by Language