6

我看不到以下两行之间的显着差异。

然而,第一个解析,而后者则没有。

In [5]: n=""" \\"Axis of Awesome\\" """

In [6]: n="""\\"Axis of Awesome\\""""
  File "<ipython-input-6-d691e511a27b>", line 1
    n="""\\"Axis of Awesome\\""""
                                ^
SyntaxError: EOL while scanning string literal

这是一个 Python 错误/功能/奇怪,还是我错过了一些基本的东西?

4

2 回答 2

9

最后四个引号

"""\\"Axis of Awesome\\""""

被解析为""",即字符串的结尾,后跟",即新字符串文字的开始。但是,这个新的文字永远不会完成。简单的例子:

>>> """foo""""bar"
'foobar'
>>> """foo""" "bar"
'foobar'

如果您想避免此问题,请替换"""r'或转义"

>>> """\\"Axis of Awesome\\\""""
'\\"Axis of Awesome\\"'
>>> r'\"Axis of Awesome\"'
'\\"Axis of Awesome\\"'
于 2012-07-04T11:39:56.073 回答
0

您的最后 4 个引号被评估为,"" & ""而不是您期望它被评估为" & """.

于 2012-07-04T11:38:41.270 回答