[Answer]-Parsing the Django model results

1👍

The result of the query on your database is a QuerySet. You use the dot notation to access the fields in your model:

res[i].name

Leave a comment