Python json.loads returning JSONDecodeError Expecting ',' delimiter
Python json.loads returning JSONDecodeError Expecting ',' delimiter Problem Description: I am trying to parse a JSON raw string using json.loads but its throwing following error JSONDecodeError at /octopus/entries/53/test_sample_job/ Expecting ‘,’ delimiter: line 3 column 27 (char 48) My json string data is as follows and I am getting error when i did json.loads(data) data = … Read more