Python中的转义符是反斜杠,用于在字符串中插入特殊字符,以下是一些常用的转义符及其对应的字符:
(图片来源网络,侵删)
转义符 | 描述 |
\ |
反斜杠 |
' |
单引号 |
" |
k">双引号 |
| `
` | 换行符 |
t |
制表符(tab) |
b |
退格符 |
r |
回车符 |
f |
换页符 |
a |
响铃符 |
v |
垂直制表符 |
|
空字符 |
xhh |
十六进制表示的字符,例如x21 表示字符! |
uhhhh |
Unicode表示的字符,例如u4e2d 表示中文字符“中” |
示例代码:
print("Hello, I'm a "Python" developer.") print("This is a new line. And this is on the same line.") print("This is a tab:tPython") print("This is a backspace: Pythonb") print("This is a bell: Pythona") print("This is a vertical tab: Pythonv") print("This is a null character: Python") print("This is a hexadecimal character: Pythonx21") print("This is a Unicode character: Pythonu4e2d")
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)