AttributeError: NoneType object has no attribute‘’

2022-09-02 20:44:28 浏览数 (1)

AttributeError: ‘NoneType’ object has no attribute ‘text’

出处

代码语言:javascript复制
difficult = obj.find('difficult').text

方案

错误提示的是空元素,没有对应的属性。

代码语言:javascript复制
<object>
    <name>1</name>
    <pose>Unspecified</pose>
    <truncated>0</truncated>
    <Difficult>0</Difficult>

仔细查看可知,原文档中是Difficult而不是difficult。 对应于这类错误,以后要更加小心检查大小写。

0 人点赞