how can i output the title alphabetically? i want it to print 'entertainment' then 'information'.
note: this is just a sample. the json file i am working with has many more titles
>>> import json
>>> field = json.loads('{"js":[{"id":"1","title":"information","number":"1","alias":"information"},{"id":"2","title":"entertainments","number":"2","alias":"entertainments"}],"text":""}')
>>> for data in field['js']:
... print data['title']
...
information
entertainments