Error messages |
NameError: name 'xxxxx' is not defined
in Python means that you're trying to use a function or variable called xxxxx
, but Python doesn't know what it is because it hasn't been defined yet. Also, Python reads code from top to bottom. If you call xxxxx()
before the function is defined, you'll get this error. Use Def command to define the new function before using it.Problem messages |
Import "autoPIPE.enum" could not be resolved from source Python
Warnings, Errors, Crashed, Confirm Messages