让我们看看我的课(看看??????)
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