Python Programming - Dictionaries - Discussion

Discussion Forum : Dictionaries - General Questions (Q.No. 11)
11.
How do you check if a value is present in the values of a dictionary?
value in dictionary
dictionary.contains(value)
value.exists_in(dictionary)
dictionary.has_value(value)
Answer: Option
Explanation:
The in keyword is used to check if a value is present in the values of a dictionary.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.