Pythonトレーニング


6.クラス

6.1 クラスの作り方・使い方

6.1.1 クラスの定義

# クラスの定義 class クラス名 # 初期メソッド def __init__(self, 引数....): 処理 # 通常メソッド def メソッド名(self, 引数....): 処理

①クラスの例
class GetTriangle:
    def __init__(self, bottom, height):
        self.bottom = bottom
        self.height = height

    def area(self):
        return self.bottom * self.height / 2