There is a json recoded to the dictionary. How can I get access to the 'body'?

{ "response": [ 78, { "date": ***, "uid": ***, "title": " ... ", "read_state": 1, "out": 1, "mid": 84, "body": "Hello my friend" } ] } 

1 answer 1

List items can be obtained by index:

 print(data['response'][1]['body'])