我试图在Python的字符串的开头和结尾添加一个反向符号(\)。当使用下面列出的代码时,相同符号右侧的所有内容在我的开发环境(Eclipse)上变为绿色,并且我收到错误消息。
mystring = "\" + mystring + "\"
答案 0 :(得分:0)
Use a double slash ('\\'
) instead of a single one:
原件:
>>> print "\hello\"
File "<stdin>", line 1
print "\hello\"
^
SyntaxError: EOL while scanning string literal
双:
>>> print "\\hello\\"
\hello\
>>>
答案 1 :(得分:0)