当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python InteractiveConsole runcode()用法及代码示例


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

用法: InteractiveConsole.runcode(code)

返回:返回代码部分的输出。



范例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




相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 InteractiveConsole runcode() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。