是否有用于在 python 程序中解释 python 代码的库?
示例用法可能如下所示..
code = """
def hello():
return 'hello'
hello()
"""
output = Interpreter.run(code)
print(output)
然后输出
hello
是否有用于在 python 程序中解释 python 代码的库?
示例用法可能如下所示..
code = """
def hello():
return 'hello'
hello()
"""
output = Interpreter.run(code)
print(output)
然后输出
hello
从 grepper 找到这个例子
the_code = '''
a = 1
b = 2
return_me = a + b
'''
loc = {}
exec(the_code, globals(), loc)
return_workaround = loc['return_me']
print(return_workaround)
显然你可以将全局和本地范围传递给exec
. 在您的用例中,您只需使用命名变量而不是返回。
您可以使用该exec
功能。您无法从代码变量中获取返回值。相反,您可以在此处自行打印。
code = """
def hello():
print('hello')
hello()
"""
exec(code)