Python中的 InteractiveInterpreter runsource()
借助InteractiveInterpreter.runsource()
方法,我们可以使用InteractiveInterpreter.runsource()
方法编译和运行具有单行或多行的源代码。
Syntax : InteractiveInterpreter.runsource(code)
Return : Return the Output if compile successful else false with error.
示例 #1:
在这个例子中我们可以看到,通过使用InteractiveInterpreter.runsource()
方法,我们能够编译和运行这段代码,如果运行成功,我们可以使用该方法得到结果,否则为 false。
# import code and InteractiveInterpreter
from code import InteractiveInterpreter
code = 'print("GeeksForGeeks")'
# Using InteractiveInterpreter.runsource() method
InteractiveInterpreter().runsource(code)
输出 :
GeeksForGeeks
示例 #2:
# import code and InteractiveInterpreter
from code import InteractiveInterpreter
code = 'a = 8; b = 2.5; -a = a + b'
# Using InteractiveInterpreter.runsource() method
InteractiveInterpreter().runsource(code)
输出 :
SyntaxError: can’t assign to operator
False