How to access a child models or classes in Django, or how to cast models in Django.

https://django-polymorphic.readthedocs.org/en/latest/ """""" The bellow text will be deleted """"""Let's think by giving a actual example...models.py from django.db import models class Person(models.Model): name = models.CharField(max_length=200) class Student(Person): student_num = models.IntegerF…