NameError: name 'B8' is not defined
时间: 2023-09-24 12:08:00 浏览: 31
Python中对错误NameError: name ‘xxx’ is not defined进行总结
5星 · 资源好评率100%
This error message indicates that the variable or object named "B8" has not been defined in the current scope. The interpreter or compiler is unable to find a reference to this variable, so it raises a NameError. To resolve this issue, you need to define the variable B8 before using it in your code.
阅读全文