On Fri, 2009-10-16 at 12:01 -0700, gervaz wrote: > Hi all, is there in python the equivalent of the C function int putchar > (int c)? I need to print putchar(8).
>>> print '\x08' or: >>> print chr(8) -- http://mail.python.org/mailman/listinfo/python-list