请参阅此代码:
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
。我怎样才能做到这一点?
请参阅此代码:
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
。我怎样才能做到这一点?