On Wed, 15 Dec 2004 23:59:13 -0500, Adam DePrince <[EMAIL PROTECTED]> wrote: > > message = [chr( (ord( x ) + 3 )%256) for x in message] >
Minor correction: message = ''.join([chr( (ord( x ) + 3 )%256) for x in message]) -- http://mail.python.org/mailman/listinfo/python-list