"Claudio Grondi" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > >>s = 'aaaaa  aaa' > >>What am I doing wrong? > > First get rid of characters not allowed > in Python code. > Replace  with appropriate escape > sequence: /x## where ## is the (should be \x##) > hexadecimal code of the ASCII > character. > > Claudio
i.e. probably instead of 'aaaaa  aaa' 'aaaaa \xC2 aaa' In my ASCII table 'Â' is '\xC2' Claudio -- http://mail.python.org/mailman/listinfo/python-list