You have a Driver model with the field name, and a Car model with the fields color, drivers, and speed:
class Driver(models.Model):
name = models.CharField(max_length=32)
class Car(models.Model):
color = models.CharField(max_length=32)
drivers = models.ManyToManyField(Driver)
speed = models.FloatFieldFind out how many cars Alex drives.