一、用反斜杠(\)转义特殊字符 1、换行——\n print("beaut\niful") 2、输出单引号 print("It\'s beautiful when it\'s snowing ") 3、输出双引号 print("I have a \"pen\"") 4、输出文件路径 使用文件时,必须转义文件路径 print("d:\\python\\helloworld.py") 二、不让反斜杠发生转义 在字符串前面添加r,可以不让发斜杠发生转义 print(r"wo\nderful")