Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Collections (Retired) Dictionaries Membership

how do you check to see if a dict key exists?

Working on matching items in a list against keys in a dict. Within the for loop of the list, I want to test each item to see if it exists as a key. However, this bit of code hangs up every time.

    item == my_dict[item]

How do you check to see if the item exists as a dict key?

1 Answer

I would use:

if item in my_dict:
    do_something()

Hope that Helps!

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

As Carlin said, this is the typical way to see if a key is present. Keep in mind that this is short hand for:

if item in my_dict.keys():
    do_something()

When a dictionary is used in an iterable context, it's keys are returned. For example:

len(my_dict) is counting the number of keys.