When I define a class and create an instance of it, entering the instance name into the shell returns a memory location. No surprise there, but does anybody know how to define a class in such a way that entering its name into a shell will actually return something other than a memory location?
Example:
>> import numpy as np
>> foo = np.array([1,2,3])
>> foo
>> array([1, 2, 3])
It would be nice if I could get something like this going.