0

请参阅此代码:

my_src_str = '"""hello"""'

my_real_str = get_real_string_from_python_src_string(my_src_str)

在这种情况下,my_src_str是 python 源代码格式的字符串表示形式。我想把它解释为一个真正的 python 字符串。我想到达hello这里my_real_str。我怎样才能做到这一点?

4

1 回答 1

3
>>> import ast
>>> my_src_str = '"""hello"""'
>>> ast.literal_eval(my_src_str)
'hello'
于 2013-05-08T09:08:50.960 回答