0
data = {"c":{"files":"s","d":{"files":["nothing"]}}}
positions = ["c","d","files"]
如何獲得我在列表「職位」中的位置?我需要從列表中的「位置」這樣的事情來獲得:基於列表中的鍵檢索嵌套字典中的值
data["c"]["d"]["files"]
我還需要與列表,它是在那個位置工作。我已經嘗試了一些,但我無法按照我想要的方式使用該列表。
def goto(data,positions):
temp = data
for i in positions:
temp = temp[i]
有沒有很酷的方式來做到這一點?
顯示應如何看待預期結果 – RomanPerekhrest
這裏沒有關於JSON的信息...... –