在python中,从Jupyter中的交互式REPL返回一个值?

时间:2017-10-03 04:41:01

标签: python jupyter read-eval-print-loop

我们可以在Jupyter中从REPL返回值吗?

import code
def console_exit():
    raise SystemExit
try:
    code.InteractiveConsole(locals={"exit": console_exit}).interact()
except SystemExit:
    pass

0 个答案:

没有答案