I recently started working with Python and I am trying to concatenate one of my JSON String with existing JSON String. I am also working with Zookeeper so I get the existing
You can load both json strings into Python Dictionaries and then combine. This will only work if there are unique keys in each json string.
import json a = json.loads(jsonStringA) b = json.loads(jsonStringB) c = dict(a.items() + b.items()) # or c = dict(a, **b)