Help with Latin Characters

Chris Angelico rosuav at gmail.com
Sun Jul 24 15:17:08 EDT 2011


On Mon, Jul 25, 2011 at 5:01 AM, Joao Jacome <slyerex at gmail.com> wrote:
> Already tried without unicode string in rootdir, same results. What if try
> using raw strings?

Raw strings are just another way of typing them into your source code.
There are different ways of writing string literals, but they produce
the same string object:

"Hello \\ world!\n"
'Hello \\ world!\n'
"""Hello \\ world!
"""
r"""Hello \ world!
"""

All these produce the exact same thing. But u"Hello \\ world!\n" is
quite different, or (in Python 3) b"Hello \\ world!\n".

ChrisA



More information about the Python-list mailing list