Есть файл json.
{
"users": {
"items": [
{
"displayName": "Alex",
"active": true,
"timeZone": "Europe"
},
{
"displayName": "Andrew",
"active": true,
"timeZone": "Europe"
},
{
"displayName": "Andriy",
"active": true,
"timeZone": "US"
},
{
"displayName": "Nick",
"active": true,
"timeZone": "Europe"
},
{
"displayName": "Serhii",
"active": true,
"timeZone": "US"
}],
"max-results": 50,
"start-index": 0,
"end-index": 4
},
"expand": "users"
}
Хочу достать все displayName и например вывести на экран, но выводить могу только по одному, указывая конкретный индекс. Есть ли возможность вытянуть сразу все displayName?
код python
import json
data = json.load(open('test.json'))
print (data["users"]["items"][тут пишу индекс]["displayName"])