y1 = get_json['x1'] if 'x1' in get_json else ""
或者
y1 = getjson.get('x1', "")
这样判断下
get(key[, default ])
Return the value for key if key is in the dictionary, else default. If default is not given, it defaults to
None, so that this method never raises a KeyError.
get(key[, default ])
还有1种方式是用in,比如"x3" in get_json,但是个人比较喜欢直接用get_json.get("x3"),如果不存在该键值,直接返回的就是1个None。
用try except,在except里写没有x3时的操作
get_json.has_key('x3')