How to Solve NameError: name 'mult' is not defined -- FILE_1

Solution: Import the 'mult' module

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

from FILE_1 import mult

 

For more information:
Python FILE_1 mult