让转义符失效(3种方法: r、repr和\) ``` python print(r'Let \'s go!') ## Let \'s go! print(repr('hello\nworld')) ## 'hello\nworld' print('hello\\nworld') ## hello\nworld ```