I have two lists
a=[\"USA\",\"France\",\"Italy\"] b=[\"10\",\"5\",\"6\"]
I want the end result to be in json like this.
[{\
In addition to the answer of 'falsetru' if you need an actual json object (and not only a string with the structure of a json) you can use json.loads() and use as parameter the string that json.dumps() outputs.
json.loads()
json.dumps()