Raw string : Escape « String « Python Tutorial






print '\n'
print '\n'
print r'\n'
print r'\n'
f = open(r'C:\windows\temp\readme.txt', 'r')
f.readline()
f.close()








5.8.Escape
5.8.1.Add backslash to the end of raw string
5.8.2.Raw string