Google Colaboratoryで三角形の外周と面積を求めるメソッドを持ったクラスを作成していますが、インデントに関するエラーが発生しています。
どこをどう直せばよいでしょうか?
ソースコード
import math class Triangles: #三角形に関するクラス """ 三角形のクラス 三角形の底辺と高さを入力して三角形の面積と外周を求めるメソッドを持っています Method ---------- triangle_area 三角形の面積を求めるメソッド triangle_circumference 三角形の外周を求めるメソッド """ def __init__(self,bottom,height): #コンストラクタ self.bottom = bottom self.height = height def triangle_area(self): #三角形の面積を求めるメソッド """ 入力された底辺と高さを利用して、三角形の面積を求めます Parameters ---------- bottom:float 底辺 height:float 高さ Answer --------- triangle_area:float 三角形の面積 """ triangle_area = (self.bottom * self.height) / 2 #三角形の面積を計算 print(triangle_area) def triangle_circumference(self): #三角形の外周を求めるメソッド """ 入力された底辺と高さを利用して、三角形の外周を求めます Parameters ---------- bottom:float 底辺 height:float 高さ Answer --------- triangle_circumference:float 三角形の外周 """ hypotenuse = math.sqrt((self.bottom)**2+(self.height)**2) #三角形の斜辺 print(hypotenuse) triangle_circumference = self.bottom + self.height + hypotenuse #三角形の外周を計算 print(triangle_circumference) print('Input bottom') bottom=float(input()) #底辺の入力 print('Input height') height=float(input()) #高さの入力 triangle = Triangles(bottom,height) #インスタンス triangle.triangle_area() #三角形の面積 triangle.triangle_circumference() #三角形の外周
エラー
File "<ipython-input-30-72b5d388e293>", line 14
def init(self,bottom,height): #コンストラクタ
^
IndentationError: unindent does not match any outer indentation level
回答1件
あなたの回答
tips
プレビュー