質問編集履歴
1
ミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
class aaa(object):
|
4
4
|
|
5
|
-
def
|
5
|
+
def __init__(self):
|
6
6
|
|
7
7
|
print(type(self).__name__)
|
8
8
|
|
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
def __init__(self):
|
14
14
|
|
15
|
-
aaa
|
15
|
+
aaa()
|
16
16
|
|
17
17
|
|
18
18
|
|