Python クラスのインスタンス変数
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