質問編集履歴
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
``` python
|
4
4
|
|
5
|
-
|
5
|
+
class Animal():
|
6
6
|
|
7
7
|
def __init__(self, h, n):
|
8
8
|
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,17 +4,17 @@
|
|
4
4
|
|
5
5
|
def Animal():
|
6
6
|
|
7
|
-
def __init__(h, n):
|
7
|
+
def __init__(self, h, n):
|
8
8
|
|
9
9
|
self.height = h
|
10
10
|
|
11
11
|
self.leg_num = n
|
12
12
|
|
13
|
-
def walk():
|
13
|
+
def walk(self):
|
14
14
|
|
15
15
|
pass
|
16
16
|
|
17
|
-
def run():
|
17
|
+
def run(self):
|
18
18
|
|
19
19
|
pass
|
20
20
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,4 +42,4 @@
|
|
42
42
|
|
43
43
|
配列を使うといいよと言われたことがあるのですが、いまいち理解できませんでした。
|
44
44
|
|
45
|
-
|
45
|
+
易しく教えてくださると嬉しいです。
|