Python クラスのインスタンス変数 1000Python 2023年03月25日 0 1.文法self.インスタンス変数名 = 値で作ります2.サンプル# -*- coding: utf-8 -*-class Test: def __init__(self,val): self.val = val def show(self): print(self.val)# ---------------------------test = Test('Hello')test.show()3.実行結果Helloが表示されます PR