How to Solve NameError: name 'funcA' is not defined -- moduleA

Solution: Import the 'funcA' module

To Solve the error, add the following line to the top of your code.

from moduleA import funcA

 

For more information:
Python moduleA funcA