📜  Python中的 InteractiveConsole runcode()

📅  最后修改于: 2022-05-13 01:55:35.372000             🧑  作者: Mango

Python中的 InteractiveConsole runcode()

借助InteractiveConsole.runcode()方法,我们可以获得单行或多行代码的输出,如果我们想查看部分代码的结果,可以使用InteractiveConsole.runcode()方法。

示例 #1:
在这个例子中我们可以看到,通过使用InteractiveConsole.runcode()方法,我们可以得到部分代码的结果,而无需使用该方法运行整个代码。

# import code
from code import InteractiveConsole
  
code = 'print("GeeksForGeeks")'
# Using InteractiveConsole.runcode() method
InteractiveConsole().runcode(code)

输出 :

示例 #2:

# import code
from code import InteractiveConsole
  
code = 'a = 10; print(a + 20)'
# Using InteractiveConsole.runcode() method
InteractiveConsole().runcode(code)

输出 :