Skip to content Skip to sidebar Skip to footer

Python Json.loads() Returns List Instead Of Dict

I have the following json from a API i'm getting via requests.get(). Now I want to turn this json into a dict with json.loads() but the outcome is a list. From https://www.w3scho

Solution 1:

It is because of your json response contains list not object.


Post a Comment for "Python Json.loads() Returns List Instead Of Dict"