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

Solution: Import the 'func1' module

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

from .module3 import func1

 

For more information:
Python .module3 func1