Get a Nonexistent Object

Report a typo

You have a model Car with fields speed and color:

class Car(models.Model):
    color = models.CharField(max_length=32)
    speed = models.FloatField()

What happens if you call get method of Car's manager for a nonexistent object?

Select one option from the list
___

Create a free account to access the full topic