我想在这个json中得到“ocr_text”
我怎样才能得到ocr_text例如:json.loads(response.text)[“名称”]
{
"name": "jane doe",
"salary": 9000,
"skills": [{
"Raspberry pi":" MHSO",
"Machine Learning": "MHSO",
"Web Development": "uaskdj",
"ocr_text": "MH 02 CB 4545"
}],
"email": "JaneDoe@pynative.com",
"projects": [
"Python Data Mining",
"Python Data Science"
]
}
2条答案
按热度按时间yhuiod9q1#
o75abkj42#
将其粘贴到python shell中并进行实验
字符串
这就对了,它将得到列表中的第一个ocr_text,如果列表中没有项,它将出错,并且它不处理列表中有多个数据项的可能性。