On Mon, Apr 7, 2008 at 8:04 PM, Terry Reedy <tjreedy at udel.edu> wrote: > Should print() have an option to convert with repr instead of str? I don't think so -- just write the repr() call. Or write print(*map(repr, (a, b, c))) -- --Guido van Rossum (home page: http://www.python.org/~guido/)