aufgabe1/codewars/classy extenstion.py

4 lines
106 B
Python

from preloaded import Animal
class Cat(Animal):
def speak(self):
return f"{self.name}: Meows."