Order order

Report a typo

Make corrections so that the ordering is done in descending order by author's name.

Write a program in Python 3
from django.db import models


class Book(models.Model):
author = models.CharField(max_length=200)
class Meta:
app_label = 'books'
...
___

Create a free account to access the full topic