Json – I expect the result to be a dictionary but it is accessed like a property… why?
I have this JSON coming from a server... { "cars": [ { "name": "Ferrari", "price": "100" }, { "name": "Lamborghini", "price": "200" }, { "name": "Ford Pinto", "price": "1" } ] } This JSON is a dictionary called cars that…