Challenge
Note
Private methods and attributes of the parent class are not available in the child's class.
The Animal class:
1234567class Animal: def __init__(self, name = None, age = None): self.__name = name self.__age = age def move(self): print('Animal is moving...')
Oppgave
Swipe to start coding
- Create a class
Catthat inherits theAnimalclass. - Create the
eatmethod. - Create a
5kg10years old'Lola'cat. - Move the cat (using the
move()method from theAnimalclass). - 'Feed' the cat (using the
eat()method from theCatclass).
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 3. Kapittel 2
single
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Awesome!
Completion rate improved to 7.69
Challenge
Sveip for å vise menyen
Note
Private methods and attributes of the parent class are not available in the child's class.
The Animal class:
1234567class Animal: def __init__(self, name = None, age = None): self.__name = name self.__age = age def move(self): print('Animal is moving...')
Oppgave
Swipe to start coding
- Create a class
Catthat inherits theAnimalclass. - Create the
eatmethod. - Create a
5kg10years old'Lola'cat. - Move the cat (using the
move()method from theAnimalclass). - 'Feed' the cat (using the
eat()method from theCatclass).
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 3. Kapittel 2
single