python中的多维数组

时间:2018-11-06 11:08:48

标签: python python-3.x python-2.7

在php中,我们可以创建像

这样的多维数组
$item = array(
 "spec" => array(
    "more" => "smth"
))     

并通过foreach($item as $a => $b)

对其进行迭代

我想知道我是否可以做同样的事情,包括python中的迭代过程

1 个答案:

答案 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)