We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602888a commit c773edaCopy full SHA for c773eda
adapter.py
@@ -7,25 +7,31 @@
7
classDog(object):
8
def__init__(self):
9
self.name="Dog"
10
+
11
defbark(self):
12
return"woof!"
13
14
15
classCat(object):
16
17
self.name="Cat"
18
19
defmeow(self):
20
return"meow!"
21
22
23
classHuman(object):
24
25
self.name="Human"
26
27
defspeak(self):
28
return"'hello'"
29
30
31
classCar(object):
32
33
self.name="Car"
34
35
defmake_noise(self, octane_level):
36
return"vroom{0}".format("!"*octane_level)
37
0 commit comments