python 提示错误AttributeError: type object 'str' has no attribute '_name_'

在做《Machine Learning in Action》书中的第三章绘制树形图时遇到了这个问题AttributeError: type object 'str' has no attribute '_name_'

很明显是if type(secondDict[key])._name_  == ‘dict’:这一句有问题,在python3中并没有type(secondDict[key])._name_这样的用法python 提示错误AttributeError: type object 'str' has no attribute '_name_'_第1张图片

所以我们要将源代码中的_name_去掉,变成if type(secondDict[key])  == ‘dict’:但这时我们会发现新的问题,编译确实没有报错,但是结果却和我们想要的结果不一样

python 提示错误AttributeError: type object 'str' has no attribute '_name_'_第2张图片python 提示错误AttributeError: type object 'str' has no attribute '_name_'_第3张图片

我们很容易知道叶子节点的数目为3,但我们得出的结果却是2,这是怎么回事呢?我们再回到源码中看

if type(secondDict[key])  == ‘dict’:

这一句中的'dict'加了引号,这就是问题所在了,我们这句判断的语句本来是判断该节点类型是否为dict(字典),但是现在却成了判断该节点类型和‘dict'的类型是否相同,很明显'dict'的类型为string类型,故而,我们本来是想求得一颗树中的叶子节点的数目,现在却变成了求树节点中除叶子节点的其他节点的数目。故而输出2

现在我们知道问题所在,修改就简单了。两种改法:

if type(secondDict[key])  == dict:

或者if type(secondDict[key])  is dict:

再测试下,成功!

python 提示错误AttributeError: type object 'str' has no attribute '_name_'_第4张图片python 提示错误AttributeError: type object 'str' has no attribute '_name_'_第5张图片

你可能感兴趣的:(《机器学习实战》学习过程)