我试图在类中实现递归函数:
class R:
def A(self):
if flag:
return self.value
else:
ret=0
for c in childs:
ret += c.A()
return ret
r = R()
print r.A()
我收到的消息是:
<bound method R.A of <R.R instance at 0x7fa1c1487248>>
我不是在寻找方法调用的字符串表示,我想打印递归计算的结果。