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


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


借助InteractiveInterpreter.runcode()方法,我们只能使用来执行具有单行或多行的预编译源代码InteractiveInterpreter.runcode()方法。

用法: InteractiveInterpreter.runcode(code)
返回:Return the result of executed source else error.

范例1:
在这个例子中,我们可以通过使用InteractiveInterpreter.runcode()方法,我们能够执行这段代码,如果运行成功,则可以使用此方法获得结果else错误。



# 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]




相关用法


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