回答編集履歴

1

def __init__\(self\)を追加しました。

2017/05/28 06:15

投稿

_Victorique__
_Victorique__

スコア1392

test CHANGED
@@ -5,6 +5,12 @@
5
5
  ```python
6
6
 
7
7
  class Sampel:
8
+
9
+ def __init__(self):
10
+
11
+ pass
12
+
13
+
8
14
 
9
15
  def AAA(x,y):
10
16
 
@@ -15,6 +21,12 @@
15
21
 
16
22
 
17
23
  class Sample2:
24
+
25
+ def __init__(self):
26
+
27
+ pass
28
+
29
+
18
30
 
19
31
  def BBB(x,y):
20
32