回答編集履歴
1
修正
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```Python
|
2
2
|
|
3
|
-
class
|
3
|
+
class Test:
|
4
4
|
|
5
5
|
def func1(self):
|
6
6
|
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
test =
|
19
|
+
test = Test()
|
20
20
|
|
21
21
|
test.func2()
|
22
22
|
|