我无法使用键列表访问嵌套字典中的值。
dict set testDict library [dict create NY [dict create section [dict create adult [dict create book cinderella]]]]
library {NY {section {adult {book cinderella}}}}
# I can access the value by:
dict get $testDict library NY section adult book
cinderella
# cannot access the same by list of keys in a variable
set keyLst {library NY section adult book}
library NY section adult book
set keyStr "library NY section adult book"
library NY section adult book
dict get $testDict $keyLst
key "library NY section adult book" not known in dictionary
dict get $testDict $keyStr
key "library NY section adults book" not known in dictionary
# The only not elegant solution I came up is using eval + list
eval dict get \$testDict $keyStr
key "adults" not known in dictionary
eval dict get \$testDict $keyLst
cinderella
虽然eval适用于此实例 - 必须有更好的方法直接执行此操作。
知道如何通过变量中的键列表访问嵌套字典值吗?
答案 0 :(得分:2)