While importing modules in python does it make a difference if we put a "." infront of the module name and does it have an advantage ?
Example in django docs :
from .models import Question
Is it different than
from models import Question
that one ?