where to import render in django

from django.shortcuts import render

  1. Use "from" to indicate the module or package you are importing from.
  2. "django.shortcuts" specifies the Django package and the shortcuts module within that package.
  3. "import render" imports the render function from the specified module.