質問編集履歴

1

何がしたいか?明確でない為、明確にしました。

2021/07/20 21:49

投稿

KIDyoshikazu
KIDyoshikazu

スコア3

test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,51 @@
1
1
  TypeError: SquTypeError: Square() takes no argumentsとエラー表示がRunすると表示されます。 a__suare = Square(20, 20)の箇所に問題があるようですが、どうしても解決できません!
2
2
 
3
3
  ご教示いただければ幸いです。
4
+
5
+
6
+
7
+ ---------------------------------------------------------
8
+
9
+
10
+
11
+ # http://tinyurl.com/j8j35s
12
+
13
+
14
+
15
+ class Shape:
16
+
17
+ def _init_(self, w, l):
18
+
19
+ self.width = w
20
+
21
+ self.len = l
22
+
23
+
24
+
25
+ def print_size(self):
26
+
27
+ print("{}" .format(self.width, self.len))
28
+
29
+
30
+
31
+ class Square(Shape):
32
+
33
+ def area(self):
34
+
35
+ return self.width * self.len
36
+
37
+
38
+
39
+ a_suare = Square(20, 20)
40
+
41
+ print(a_square.area())
42
+
43
+
44
+
45
+ -------------------------------------------------------------
46
+
47
+
48
+
49
+ ※面積を出すプログラムですが、上記エラー表示の為、面積が表示されません、
50
+
51
+ お手数ですが解決策をご教示いただければ幸いです