是否还有更多 "quote" 符号用作引号?

Are there any more "quote" symbols to use as quotes?

如果您 运行 有任何“引号”符号可以使用吗?

我知道可以使用 "'(以及它们的组合),例如“''”(不知何故)

“附加”“报价”符号的示例是 \" 内引号。

如果我制作了一个 python 脚本,并且“用完”了 "',还有更多的字符可以用来表示引号吗?

没有。据我所知,'" 是唯一可以在字符串文字中使用的引号。 Lexical Analysis page 包含以下信息:

shortstring     ::=  "'" shortstringitem* "'" | '"' shortstringitem* '"'
longstring      ::=  "'''" longstringitem* "'''" | '"""' longstringitem* '"""'

In plain English: Both types of literals can be enclosed in matching single quotes (') or double quotes ("). They can also be enclosed in matching groups of three single or double quotes (these are generally referred to as triple-quoted strings).

这表明只有这两个选项。

不,"'是Python中唯一的引号字符。

如果您 运行 没有引号符号,您可以使用反斜杠“转义”引号 (\),这将忽略引号并使它们成为字符串的一部分。

例如,这将是一个有效的字符串:

print("hello \"bob\"")

这会 return 'hello "bob"'

不,目前 Python 中没有其他引用字符
据我所知 '" 只是 python
中的引号字符 但是如果你算一个多行字符串那么它看起来像这样:

multiline = """
string
string
string
"""

要列出它们,您将使用:

multiline.splitlines()