Re: New to Python.
"Terry Reedy" <tjreedy@udel.e du> wrote in
news:mailman.12 6.1079617542.74 2.python-list@python.org :
[color=blue][color=green]
>> You really want to use double backslashes (\\) here or use a raw
>> string (r'...'). If not, this will eventually bite you.[/color]
>
> Or forward slashes (/), which avoids the whole problem.
>[/color]
for file() and similar, forward slashes are great, but try to spawn()
something and a raw string works better.
SDF
"Terry Reedy" <tjreedy@udel.e du> wrote in
news:mailman.12 6.1079617542.74 2.python-list@python.org :
[color=blue][color=green]
>> You really want to use double backslashes (\\) here or use a raw
>> string (r'...'). If not, this will eventually bite you.[/color]
>
> Or forward slashes (/), which avoids the whole problem.
>[/color]
for file() and similar, forward slashes are great, but try to spawn()
something and a raw string works better.
SDF
Comment