最佳答案
如何得到 JSON 数据节点中的元素数?
杰森:
{
"result":[
{
"run":[
{
"action":"stop"
},
{
"action":"start"
},
{
"action":"start"
}
],
"find":true
}
]
}
我需要从节点 data['result'][0]['run']
获取元素的数量。它应该是3,但我找不到如何在 Python 中做到这一点。