-6
我有以下的嵌套字典:如何使用子鍵訪問嵌套字典的值?
{
"category": "string",
"top_bottom": {
"count": 0,
"data": [
{
"store_name": "string",
"store_id": "string",
"value": 0
}
],
"end_name": "string"
}
}
而且我想要得到的關鍵store_name
值。我怎樣才能做到這一點?