The Python back slash is used for continuation of the print statement. You can stretch a single statement across multiple lines:
print "Hello world "
This gives the following output:
C:pydev>python hello.pyHello world