解释 python 程序中的 python 代码
Interpret python code within python program
是否有用于解释 python 程序中的 python 代码的库?
示例用法可能如下所示..
code = """
def hello():
return 'hello'
hello()
"""
output = Interpreter.run(code)
print(output)
然后输出
hello
您可以使用exec
功能。您无法从代码变量中获取 return 值。相反,您可以自己打印它。
code = """
def hello():
print('hello')
hello()
"""
exec(code)
从 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
。在您的用例中,您只需使用命名变量而不是返回。
是否有用于解释 python 程序中的 python 代码的库?
示例用法可能如下所示..
code = """
def hello():
return 'hello'
hello()
"""
output = Interpreter.run(code)
print(output)
然后输出
hello
您可以使用exec
功能。您无法从代码变量中获取 return 值。相反,您可以自己打印它。
code = """
def hello():
print('hello')
hello()
"""
exec(code)
从 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
。在您的用例中,您只需使用命名变量而不是返回。