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