On 06/07/07, Richard Querin <[EMAIL PROTECTED]> wrote: > I'm writing a very simple python script which writes out some > predefined text to a file (which will later become part of an html > file). I need to write out a pound sign '#' to the file and I can't > figure out how to escape it. I've tried '\#' and '\u0023', but neither > works. How can I do it?
Why do you need to? # doesn't mean anything special inside a quoted string. >>> s = "# foo" >>> print s # foo _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
