How to check if a value exists in a dictionary with Python

1 Answer

0 votes
dict = {'key1':34, 'key2':89, 'key3':12, 'key4':72, 'key5':90}

print(12 in dict.values())

    
    
'''
run:

True

'''

 



answered Apr 11, 2021 by avibootz

Related questions

2 answers 220 views
2 answers 152 views
1 answer 173 views
1 answer 181 views
1 answer 162 views
1 answer 195 views
...