MCPcopy Index your code
hub / github.com/qiwsir/StarterLearningPython / Animal

Class Animal

2code/21101.py:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6__metaclass__ = type
7
8class Animal:
9 def __init__(self, name=""):
10 self.name = name
11
12 def talk(self):
13 pass
14
15class Cat(Animal):
16 def talk(self):

Callers 1

21101.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected