当前位置:  开发笔记 > 编程语言 > 正文

Python:末尾带有\n的eval字符串

如何解决《Python:末尾带有\n的eval字符串》经验,为你挑选了1个好方法。



1> TigerhawkT3..:

你需要逃避反斜杠.

>>> eval('"hello \n"')
Traceback (most recent call last):
  File "", line 1, in 
  File "", line 1
    "hello
          ^
SyntaxError: EOL while scanning string literal
>>> eval('"hello \\n"')
'hello \n'
>>> print(eval('"hello \\n"'))
hello

>>>

没有那个转义,Python会看到这个代码(这是一个明显的错误):

"hello 
"

而不是所需的代码:

"hello \n"

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有