AttributeError: 'NoneType' object has no attribute 'shape'
时间: 2023-07-14 20:06:41 浏览: 267
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
这个错误的意思是: "Attributeerror: nonetype object has no attribute shape" ,提示你在操作一个"nonetype"对象的shape属性时出错了。这是因为你试图访问一个没有初始化或被赋值为 "None" 的变量。请检查你的代码,确认该变量在使用前已被正确初始化。
阅读全文