newbie: question about "__repr__"

George Kinney gk_2345 at yahoo.com
Wed Nov 5 23:05:53 EST 2003


"chenyu" <chenyu468 at hotmail.com> wrote in message
news:6143ac23.0311051814.4d9908f at posting.google.com...
> Hi,
> I have read others' code for study, and found one built-in function
> "__repr__". Could anyone give me an simple example for explaining
> "when and how" to use it.

The customary use of __repr__ is for it to return a string that can be
passed to eval()
and re-create the object.  So for a class 'foo' that takes one string in its
__init__, __repr__
might return "foo('astring')".








More information about the Python-list mailing list