Python中的 InteractiveConsole runcode()
借助InteractiveConsole.runcode()
方法,我们可以获得单行或多行代码的输出,如果我们想查看部分代码的结果,可以使用InteractiveConsole.runcode()
方法。
Syntax : InteractiveConsole.runcode(code)
Return : Return the output of the code section.
示例 #1:
在这个例子中我们可以看到,通过使用InteractiveConsole.runcode()
方法,我们可以得到部分代码的结果,而无需使用该方法运行整个代码。
# import code
from code import InteractiveConsole
code = 'print("GeeksForGeeks")'
# Using InteractiveConsole.runcode() method
InteractiveConsole().runcode(code)
输出 :
GeeksForGeeks
示例 #2:
# import code
from code import InteractiveConsole
code = 'a = 10; print(a + 20)'
# Using InteractiveConsole.runcode() method
InteractiveConsole().runcode(code)
输出 :
30