回答編集履歴
1
修正
answer
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
```Python
|
2
|
-
class
|
2
|
+
class Test:
|
3
3
|
def func1(self):
|
4
4
|
print("Hello")
|
5
5
|
|
@@ -7,7 +7,7 @@
|
|
7
7
|
self.func1()
|
8
8
|
print(",world")
|
9
9
|
|
10
|
-
test =
|
10
|
+
test = Test()
|
11
11
|
test.func2()
|
12
12
|
```
|
13
13
|
|