我试图获取json数组中字段的所有父/祖先名称。
假设我有以下json数组
{
"country abbreviation": "US",
"places": [
{
"place name": {
"state": "india",
"continent": "Asia"
},
"longitude": "-71.4594",
"post code": "02178",
"latitude": "42.4464"
},
{
"place name": "Belmont",
"longitude": "-71.2044",
"post code": "02478",
"latitude": "42.4128"
}
],
"country": "United States",
"place name": "Belmont",
"state": "Massachusetts",
"state abbreviation": "MA"
}
如果想获得父/祖先的州名,那么它应该是“地名/地名”
我正在尝试使用python,但无法理解逻辑,任何人都可以帮助我。使用shell也可以,但主要是我想在python中使用它。