I am following some code written for the binary tree.
The tree variable is the class object.
The program is running fine. however, I really confuse with the way that python storing the data in object. I can not view the data store in this tree the only thing that I can see when try to print is:
>> print tree
<treepredict.de cisionnode instance at 0x03E0E6C0>
what is the way to view all the data store in this "tree" object???
The tree variable is the class object.
The program is running fine. however, I really confuse with the way that python storing the data in object. I can not view the data store in this tree the only thing that I can see when try to print is:
>> print tree
<treepredict.de cisionnode instance at 0x03E0E6C0>
what is the way to view all the data store in this "tree" object???
Comment