a={'a':{'b':{'c':{'d':'e'}},'f':'g'},'h':'i'}

def show(myMap):

for str in myMap.keys():
secondDict=myMap[str]
print str
if type(myMap[str]).__name__=='dict':
for key in secondDict.keys():
if type(secondDict[key]).__name__=='dict':
print key
show(secondDict[key])
else:
print key
print secondDict[key]
else:
print myMap[str]

show(a)

通过递归来实现遍历字典中的所有元素。效率可能比较低。

posted on 2015-03-20 21:33  sunrye  阅读(1126)  评论(0编辑  收藏  举报