Python 简明教程
Python - Escape Characters
Escape Character
escape character 是一个字符后跟一个反斜杠 (\)。它告诉 Interpreter 这个转义字符(序列)有特殊含义。例如,\n 是一个转义序列,表示换行符。当 Python 在字符串中遇到这个序列时,它会理解需要开始一个新行。
除非存在 'r' 或 'R' 前缀,否则字符串和字节字面量中的转义序列的解释规则与标准 C 中使用的规则类似。在 Python 中,如果一个 string 在引号符号之前以 "r" 或 "R" 为前缀,它将成为一个原始字符串。因此,'Hello' 是一个正常字符串,而 r’Hello' 是一个原始字符串。
Escape Characters Example
以下代码显示了上表中列出的转义序列的用法:
# ignore \
s = 'This string will not include \
backslashes or newline characters.'
print (s)
# escape backslash
s=s = 'The \\character is called backslash'
print (s)
# escape single quote
s='Hello \'Python\''
print (s)
# escape double quote
s="Hello \"Python\""
print (s)
# escape \b to generate ASCII backspace
s='Hel\blo'
print (s)
# ASCII Bell character
s='Hello\a'
print (s)
# newline
s='Hello\nPython'
print (s)
# Horizontal tab
s='Hello\tPython'
print (s)
# form feed
s= "hello\fworld"
print (s)
# Octal notation
s="\101"
print(s)
# Hexadecimal notation
s="\x41"
print (s)
它将生成以下 output −
This string will not include backslashes or newline characters.
The \character is called backslash
Hello 'Python'
Hello "Python"
Helo
Hello
Hello
Python
Hello Python
hello
world
A
A