AttributeError: tuple' object has no attribute 'shape
时间: 2023-10-30 10:06:36 浏览: 217
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
当出现AttributeError: 'tuple' object has no attribute 'shape'错误时,这通常是因为我们在对一个tuple类型的数据调用成员变量shape时出错。实际上,tuple类型是不可变的,没有shape属性。要解决这个错误,我们需要检查代码中的数据类型是否正确。在错误的用法中,我们可能会看到类似于a = tuple(a)的代码,这会将a转换为tuple类型,但不会改变a的属性。因此,要保存转换后的变量,我们需要声明一个新的变量来保存,例如b = tuple(a)。请注意,b是一个tuple类型,而a的类型保持不变。和这个错误类似的错误还有:AttributeError: 'list' object has no attribute 'shape',AttributeError: 'int' object has no attribute 'shape'等。要注意避免这样的错误用法。
阅读全文