"Lie Ryan" <[EMAIL PROTECTED]> wrote

You should do this instead:
r'C:\nice\try'
OR
'C:\\nice\\try'

the first way is called raw string, the backslash lose its meaning
the second way is by escaping the backslash.

Or just use forward slashes which work on *nix or windows...

'C:/nice/try'

HTH,

Alan G.

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to