a1='[{"v1":"value"}, {"v1":"value"}, ]'
b1=json.loads(a1)
Creates exceptions, BUT.
a2='[{"v1":"value"}, {"v1":"value"}]'
b2=json.loads(a2)
Does not create any exceptions/error. Can someone please help me understand why the last comma in the first example is such a big issue and
how I could still convert the first example without modifying the data?
evalinstead ofjson.loads.