我有一个带有函数的python模块:
def do_stuff(param1 = 'a'):
if type(param1) == int:
# enter python interpreter here
do_something()
else:
do_something_else()
有没有办法放入命令行解释器,我有评论?所以如果我在python中运行以下命令:
>>> import my_module
>>> do_stuff(1)
我在do_stuff()
的评论范围和背景中得到了我的下一个提示?
答案 0 :(得分:135)
如果你想要一个标准的交互式提示(而不是调试器,如prestomation所示),你可以这样做:
import code
code.interact(local=locals())
请参阅:code module。
如果你安装了IPython,并且想要一个IPython shell,你可以为IPython> = 0.11执行此操作:
import IPython; IPython.embed()
或旧版本:
from IPython.Shell import IPShellEmbed
ipshell = IPShellEmbed()
ipshell(local_ns=locals())
答案 1 :(得分:54)
答案 2 :(得分:21)
如果你想要一个默认的Python解释器,你可以做
import code
code.interact(local=dict(globals(), **locals()))
这将允许访问本地和全局。
如果您想进入IPython解释器,IPShellEmbed
解决方案过时。目前有效的是:
from IPython import embed
embed()