Python中的 InteractiveInterpreter runcode()
借助InteractiveInterpreter.runcode()
方法,我们只能使用InteractiveInterpreter.runcode()
方法执行具有单行或多行的预编译源代码。
Syntax : InteractiveInterpreter.runcode(code)
Return : Return the result of executed source else error.
示例 #1:
在这个例子中我们可以看到,通过使用InteractiveInterpreter.runcode()
方法,我们能够执行这段代码,如果运行成功,我们可以使用该方法得到结果 else error。
# import code and InteractiveInterpreter
import code
from code import InteractiveInterpreter
source = 'print("GeeksForGeeks")'
compile_code = code.compile_command(source)
# Using InteractiveInterpreter.runcode() method
InteractiveInterpreter().runcode(compile_code)
输出 :
GeeksForGeeks
示例 #2:
import code
from code import InteractiveInterpreter
source = 'a = 5; b = 5; li = [a * b for i in range(5)]; print(li)'
compile_code = code.compile_command(source)
# Using InteractiveInterpreter.runcode() method
InteractiveInterpreter().runcode(compile_code)
输出 :
[25, 25, 25, 25, 25]