私のクラスを見てみましょう(????を見てください)
class MyInt(object):
def set_value(_value):
if type(_value)!=int:
type_name = type(_value).__name__)
raise Exception("value of %s cannot be %s" % (????,type_name))
self.value = _value
と ...
x = MyInt()
x.set_value(1)
それは大丈夫です、そして...
x.set_value("A")
この回答が必要です (最適な説明):
value of x cannot be str
「x」(????で)を取得する方法、または変数名を引数として渡す方法(暗黙的)
tnx