Aufgabe3 : oop lösungen #3

Open
hamzaola wants to merge 8 commits from Aufgabe3 into main
Showing only changes of commit cce7a1b7dc - Show all commits

View File

@ -0,0 +1,4 @@
from preloaded import Animal
class Cat(Animal):
def speak(self):
return f"{self.name}: Meows."