Skip to content

Tag: find

How to check if a value exists in a dictionary?

I have the following dictionary in python: I need a way to find if a value such as “one” or “two” exists in this dictionary. For example, if I wanted to know if the index “1” existed I would simply have to type: And then python would tell me if that is true or false, howeve…