I\'m learning python and i loop like this the json converted to dictionary: it works but is this the correct method? Thank you :)
import json
output_file =
json_data = json.loads(url)
If list is there, then iterate:
for majorkey, subdict in json_data.iteritems():
for one_majorkey in subdict:
for subkey, value in one_majorkey.iteritems():
for each_subkey, valu_U in value.iteritems():
for each_sub_subkey, value_Q in valu_U.iteritems():
for each_sub_sub_subkey, value_num in value_Q.iteritems():
print each_sub_sub_subkey, value_num