📜  Python中的 InteractiveInterpreter runsource()

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

Python中的 InteractiveInterpreter runsource()

借助InteractiveInterpreter.runsource()方法,我们可以使用InteractiveInterpreter.runsource()方法编译和运行具有单行或多行的源代码。

示例 #1:
在这个例子中我们可以看到,通过使用InteractiveInterpreter.runsource()方法,我们能够编译和运行这段代码,如果运行成功,我们可以使用该方法得到结果,否则为 false。

# import code and InteractiveInterpreter
from code import InteractiveInterpreter
  
code = 'print("GeeksForGeeks")'
# Using InteractiveInterpreter.runsource() method
InteractiveInterpreter().runsource(code)

输出 :

示例 #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)

输出 :