'float' object has no attribute 'append'
时间: 2023-08-06 21:06:42 浏览: 952
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误是因为你试图在一个float类型的对象上调用append()方法,而float类型的对象不具备append()方法,只有列表list对象才能调用append()方法。例如,你可以创建一个空列表a=[],然后使用a.append('abc')来将'abc'添加到列表中,再使用a.append('def')将'def'添加到列表中,最后你可以通过打印a来确认列表的内容是['abc', 'def']。这个错误与'float' object has no attribute 'astype'错误不同,后者是由于图像输入有误导致的报错,你需要检查图像或者摄像头输入。
阅读全文