In standard python ```python >>> x={"hello" : "world"} >>> "hello" in x True ``` In gpython ```python >>> x={"hello" : "world"} >>> "hello" in x Traceback (most recent call last): File "<stdin>", line 1, in <module> FIXME line of source goes here TypeError: "unsupported operand type(s) for iter: 'dict'" ```