I am trying to implement a recursive function in a class like:
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()
I am getting the message:
<bound method R.A of <R.R instance at 0x7fa1c1487248>>
I am not looking for the string representation of the method call, I want to print the result of the recursive calculation.
self.Asomewhere. Your code is incomplete, what areflag,childsandself.value? – Martijn Pieters Aug 12 '12 at 7:42r=R() print r.A()– rcr Aug 12 '12 at 7:46self.Aat any point, you missed something when simplifying your code. – Martijn Pieters Aug 12 '12 at 7:57