dict = {} dict ["one"] = "Sentence one" dict ["two"] = "Sentence two" dict ["three"] = "Sentence three" if "one" in dict: print "key one is in the dictionary" del dict["one"] if "one" not in dict: print "key one is NOT in the dictionary"