Straight to the point:
I have created three files on repl.it along with my main.py - Logger.py, Responses.py, and phrases.json
Now when I am trying to import them into main.py using,
import Logger.py
import Response.py
import phrases.json
I am getting this error:
Traceback (most recent call last):
File "main.py", line 7, in <module>
import Logger.py
ModuleNotFoundError: No module named 'Logger.py'; 'Logger' is not a package
What should I do?