python--问题排查--AttributeError: ‘NoneType‘ object has no attribute “xx“

这个是python代码协作时的常见错误

一般在错误这行,是个“空“对象none,不是你想象中的yy对象,当然没有xx属性了

我们在编程时,尽量增加“异常处理“的实现,提前想一下是否会有各种异常值,处理

比如代码:

cc = bb.get('response_list').get('body').get('response')[0].get('body').get('admin_auth').get('sessionid')

执行报错:AttributeError: 'NoneType' object has no attribute 'get'

排错方法是:

这里面的bb变量,或则bb变量后续的get的迭代的某个返回变量是none

逐一打印这些值就可以了

print(bb.get('response_list'))

print(bb.get('response_list').get('body'))

……

看看那个是空值none

 

 

 

 

 

你可能感兴趣的:(python,编程技巧)