Can I get a technical explanation on the following error

DasIch dasdasich at googlemail.com
Sun May 24 14:48:59 EDT 2009


'\' starts a escape sequence. You need to escape '\' with a '\' to make it 
work. 
>>> print 'test \\'
test \




More information about the Python-list mailing list