I am receiving a python dict that has the following format via curl.
json = connect(header, URL)
I am trying to iterate/get the different "number" values with the following code:
for i in json['mail']['number']:
print (str(i).replace('"',''))
but it does not work. Any ideas?