Python - Inheritance and Code Reuse
You want to extend a parent class
__init__ method to add a new attribute in the child class. Which code correctly uses super() to do this?
class Animal:
def __init__(self, name):
self.name = name
class Dog(Animal):
def __init__(self, name, breed):
???
self.breed = breed
Choose the correct replacement for ???.