我想创建一个 myCalc 类,它有一个构造函数,带有 get 和 set 方法并使用一个属性。我了解 get 和 set 方法,但是在将所有部分放在一起时遇到了麻烦,因此它可以执行我想要它做的事情。我到目前为止是这样的:
class myCalc(object):
def __init__(self):
self._ =name
def (self):
"""Get the answer doubled."""
return self._plus
def (self):
"""Get the answer squared."""
return self._times
我想尽可能让程序响应对象中数字的两倍和平方的属性。任何的意见都将会有帮助。