from . import views not working

For some reason my from. import views is not working. the error code says it cannot import from mysite.

I have included an include statement in my project urls. do I need to implement an include statement in my app urls?

Or do I need an import statement from somewhere else?

it says import error I cannot from mysite.

This is not the structure of the urlpatterns as described in the tutorial. The tutorial shows that your root urls.py file (the file referenced in your settings.py file) only contains the admin and polls settings. The other url entries belong in the urls.py file in the polls directory.