blob: 9a46a6fd10f77f0002dc98bac3d8ff1e8350d930 (
plain)
1
2
3
4
5
6
7
8
9
|
class Animal:
def run(self, distance=0):
print(f"Ran {distance} km!")
class Dog(Animal):
def run(self, distance): # [signature-differs]
super(Animal, self).run(distance)
print("Fetched that stick, wuff !")
|