I have a json data that i got from VK.
 {
"response": [{
    "id": 156603484,
    "name": "Equestria in the Space",
    "screen_name": "equestriaspace",
    "is_closed": 0,
    "type": "group",
    "is_admin": 1,
    "admin_level": 3,
    "is_member": 1,
    "description": "Официально сообщество Equestria in the Space!",
    "photo_50": "https://pp.userap...089/u0_mBSE4E34.jpg",
    "photo_100": "https://pp.userap...088/O6vENP0IW_w.jpg",
    "photo_200": "https://pp.userap...086/rwntMz6YwWM.jpg"
    }]
}
So i wanted to print only "name" but when i did it it gave me an error
TypeError: list indices must be integers or slices, not str
My code is:
method_url = 'https://api.vk.com/method/groups.getById?'
data = dict(access_token=access_token, gid=group_id)
response = requests.post(method_url, data)
result = json.loads(response.text)
print (result['response']['name'])
Any idea how can i fix it? In google i found how to parse json with one array. But here is two or something
P.S dont beat me so much. I am new in Python, just learning
 
    