AttributeError: type object 'str' has no attribute '__name__'

在实现决策书代码里有if type(secondDict[key]).name==‘dict’: 这么一个判断条件
报错 AttributeError: type object ‘str’ has no attribute ‘name
俩个修改方法
if type(secondDict[key])==dict:
if type(secondDict[key]) is dict:

你可能感兴趣的:(python,python)