使用python -i参数
添加-i参数
python -i myapp.py
使用code.interact()
import code
# before
code.interact()
# after
使用pdb lib
for thing in set_of_things:
import pdb;
pdb.set_trace()
do_stuff_to(thing)
使用IPython embed
from IPython import embed
for thing in set_of_things:
embed()
do_stuff_to(thing)