python遍历字典元素

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)

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

原文地址:https://www.cnblogs.com/sunrye/p/4354645.html