I am trying to convert the following string into list. However I get the variable enclosed in round brackets.
a = '{"0": "407-1656"}, {"4": "512-873"}'
b = [a]
on executing above following is the value of b
['{"0": "407-1656"}, {"4": "512-873"}']
I require the output to be
[{"0": "407-1656"}, {"4": "512-873"}]
Thanks.