python if json key exists code example
Example 1: python json check if key exists
import json
if 'id' not in dest:
dest['id'] = -1
targetId = dest['id']
Example 2: python check if key exist in json
json_string = """{"a": 1, "b": 2, "c": 3}"""
a_dictionary = json.loads(json_string)
b_in_dict = "b" in a_dictionary
Example 3: how to check if json has a key python
b_in_dict = "b" in a_dictionary