K
Ken Godee
I'm confused, I have a class returning a value from
a method of that class and I'm getting a reference
to the object instead of the actual returned value.
How can I convert it back to an actual value I can use for
further processing?
ie.
import manager
a = manager.Manager()
xx = a.connect()
print xx
<manager.Manager object at 0x81d7034>
a method of that class and I'm getting a reference
to the object instead of the actual returned value.
How can I convert it back to an actual value I can use for
further processing?
ie.
import manager
a = manager.Manager()
xx = a.connect()
print xx
<manager.Manager object at 0x81d7034>