teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

修正

2018/07/31 10:16

投稿

LouiS0616
LouiS0616

スコア35678

answer CHANGED
@@ -1,5 +1,5 @@
1
1
  ```Python
2
- class test:
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 = test()
10
+ test = Test()
11
11
  test.func2()
12
12
  ```
13
13