In standard python
>>>x={"hello" : "world"}
>>>"hello"inxTrueIn gpython
>>>x={"hello" : "world"}
>>>"hello"inxTraceback (mostrecentcalllast):
File"<stdin>", line1, in<module>FIXMElineofsourcegoeshereTypeError: "unsupported operand type(s) for iter: 'dict'"
In standard python
In gpython