在php中,我们可以创建像
这样的多维数组$item = array(
"spec" => array(
"more" => "smth"
))
并通过foreach($item as $a => $b)
我想知道我是否可以做同样的事情,包括python中的迭代过程
答案 0 :(得分:0)
是的,您可以使用像这样的字典(字典)(python 3):
item = {"spec": {"more": "smth"}}
for key, value in item.items():
print("The key was '" + key + "' and the value was:")
print(value)