How to Solve NameError: name 'func2' is not defined -- .

Solution: Import the 'func2' module

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

from ..module4 import func2

 

For more information:
Python . func2