I'm attempting to import a function from an existing python file the usual syntax is:
from Python_file import function_name
But when run in FloydHub the following error is shown:
ModuleNotFoundError Traceback (most recent call last)
in
11 '''
12
--> 13 from Python_file import function_name
14
15
ModuleNotFoundError: No module named 'Python_file'
Any reason why this doesn't work? It works fine in Atom.