I’m taking a django course and when I go to put urls, it’s causing this problem:

Code:

Folder structure:

>Solution :
This is because of absolute imports being in effect (more precisely, the lack of implicit relative imports) for Python 3 and the fact that the pyping module was most likely only written for Python 2. Whereas in Python 2 you can do:
from core.views import home
In Python 3 (or if you have from __future__ import absolute_import in Python 2), you have to do:
from .core.views import home
or
from pyping.core.views import home
You can try this.