I'm following the book "Learn Python The Hard Way". For some reason I'm unable to import one python file into another. The error always says "No module named 'xxx'". Both files are in the same folder. I have tried doing it with Python 2.6 and 3.8 with both Powershell and Jupyter Notebook. Nothing is working. This is a very simple code. I am unable to understand why it isn't working. Totally stuck for days. Need help.
import prac6
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-10-8af45a888d19> in <module>
----> 1 from prac6 import break_words
ModuleNotFoundError: No module named 'prac6'