Python/gloss python escape characters

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python转义字符

转义字符

要在字符串中插入非法字符,请使用转义字符。

转义字符是反斜杠 \ 然后是您要插入的字符。

非法字符的一个示例是在字符串内用双引号引起来的双引号:

如果在双引号包围的字符串中使用双引号,则会出现错误:

txt = "We are the so-called "Vikings" from the north."

要解决此问题,请使用转义符 \"

使用转义符可以在通常不允许的情况下使用双引号:

txt = "We are the so-called \"Vikings\" from the north."

Python中使用的其他转义字符:

Code 结果 试试吧
\' 单引号 试试吧 ”
\\ 反斜杠 试试吧 ”
\n 新队 试试吧 ”
\r 回车 试试吧 ”
\t Tab 试试吧 ”
\b 退格键 试试吧 ”
\f 换页
\ooo 八进制值 试试吧 ”
\xhh 十六进制值 试试吧 ”