Boyd Roberts <boyd@strakt.com> writes:
Thomas Heller wrote:
I don't think so. For me, this is a fine implementation of chr():
def chr(i):
return "\x00\x01\x02x03...\xFF"[i]
That's dreadful.
def chr(i):
return'%c' % i
Maybe, but you probably got my point...
Thomas