Hi i have the following code in python:
import json
jsonpost = json.loads('{"Player": {"_id": "3","firstName":"kim","surname":"jones"},"newTable": {"_id": "4","SurName": "abcd"}}')
for key in jsonpost.keys():
for innerkey in jsonpost[key]:
print innerkey
my question is why when i print out inner key the order of the keys for jsonpost['Player'] is the following:
_id , surname, firstName