常用的获取raw string的方式为:
>>>r'\n'
\n
不能用在字符串变量中,获取字符串变量中的反斜杠如下:
tab = '\n'
>>>tab.encode('string-escape')