python字符串符号区别

1. 单引号(' ‘)和双引号(“ ")主要包含字符,字符串,空格等单行字符串内容

2. 三引号(''' ''' 或者”“”   “”“),你可以指示一个多行的字符串。你可以在三引号中自由的使用单引号和双引号。

    例如:
'''This is a multi-line string. This is the first line.
This is the second line.
"What's your name?," I asked.
He said "Bond, James Bond."
'''

3. 转义字符反斜杠(\)可以通过 转义符 来完成这个任务。你用\'来指示单引号——注意这个反斜杠

    可以用转义符\\(两个反斜杠)来指示反斜杠本身

    值得注意的一件事是,在一个字符串中,行末的单独一个反斜杠表示字符串在下一行继续,而不是开始一个新的行。

例如:
"This is the first sentence.\
This is the second sentence."
等价于"This is the first sentence. This is the second sentence."

4. 自然字符串

如果你想要指示某些不需要如转义符那样的特别处理的字符串,那么你需要指定一个自然字符串。自然字符串通过给字符串加上前缀r或R来指定。例如r"Newlines are indicatedby \n"。

5. Unicode字符串

Python允许你处理Unicode文本——你只需要在字符串前加上前缀u或U。例如,u"This is a Unicode string."。


你可能感兴趣的:(python,任务)