I was making a django application .When i tried to import the models.py module in forms.py by the following command from . import models it raises the following error 
Traceback (most recent call last):
  File "E:\practise_project\practise_app\forms.py", line 1, in <module>
    from . import models
SystemError: Parent module '' not loaded, cannot perform relative import

