Python之转义字符表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之转义字符表相关的知识,希望对你有一定的参考价值。
Escape | What it does. | 含义 |
\\ | Backslash () | 反斜杠 |
\‘ | Single-quote (‘) | 单引号 |
\" | Double-quote (") | 双引号 |
\a | ASCII bell (BEL) | 响铃符 |
\b | ASCII backspace (BS) | 退格符 |
\f | ASCII formfeed (FF) | 进纸符 |
\n | ASCII linefeed (LF) | 换行符 |
\N{name} | Character named name in the Unicode database (Unicode only) | Unicode数据库中的字符名;name就是它的名字 |
\r ASCII | Carriage Return (CR) | 回车符 |
\t ASCII | Horizontal Tab (TAB) | 水平制表符 |
\uxxxx | Character with 16-bit hex value xxxx (Unicode only) | 值为16位十六进制xxxx的字符 |
\Uxxxxxxxx | Character with 32-bit hex value xxxxxxxx (Unicode only) | 值为32位十六进制xxxx的字符 |
\v | ASCII vertical tab (VT) | 垂直制表符 |
\ooo | Character with octal value ooo | 值为八进制ooo的字符 |
\xhh | Character with hex value hh | 值为十六进制数hh的字符 |
本文出自 “abiu的小世界” 博客,请务必保留此出处http://9030540.blog.51cto.com/9020540/1940216
以上是关于Python之转义字符表的主要内容,如果未能解决你的问题,请参考以下文章