i has some json works like this.
>>> j = '{"a":5}'
>>> js = json.loads(j)
>>> for key in js:
...     key
...     type(key)
...     key is unicode('a')
... 
u'a'
<type 'unicode'>
False
In my opinion last value of output should be true. Plese helpme to find my mistake.
 
    