import json
x = ''' {
"result":{
"firstList":[
{
"username":"a@gmail.com",
"password":"123"
}
]
},
"size":1,
"took":436
} ''' # The Json
seloco = json.loads(x)
print(seloco) # Print Json
How can I print username and password?