'int' object has no attribute 'mingbs'
时间: 2023-10-23 11:10:15 浏览: 121
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
This error message is indicating that you are trying to access an attribute called 'mingbs' on an integer object. However, integers do not have an attribute called 'mingbs', so this will result in an AttributeError.
To resolve this error, you need to check the code and make sure that you are not trying to access an attribute that does not exist on an integer object. You may need to review the logic of your code and make sure that you are using the correct data types and objects.
阅读全文