Simplejson and random key value

2019-09-13 23:46发布

Here is the value i got from API server

{"query":{"pages":{"-1":{"ns":0,"title":"spencerx","missing":""}}}}

Let say if i want to get determine if it's not missing word, i will know by looking at "-1" of the return. but when the word exist, it will returning me the following json

{"query":{"pages":{"1080152":{"pageid":1080152,"ns":0,"title":"spencer"}}}}

which is a random number. may i know how could i detect that's '-1' and determine the word doesn't exist? while i try to print x['query']['pages'] it will just throw all the following behind to me, but i don't know how to detect it's key error. thanks.

1条回答
兄弟一词,经得起流年.
2楼-- · 2019-09-14 00:37

try print x['query']['pages'].keys(), which would give you ['-1'] for the first case and ['1080152'] for the second one.

if you just want to check '-1' in x['query']['pages']:

if '-1' in x['query']['pages']:
   # dictionary x['query']['pages'] has '-1' as a key

would suffice

查看更多
登录 后发表回答