import code; code.interact(local=locals())
IPython with embed()
Install it with:
pip install ipython
Use it like so:
from IPython import embed
# Misc code
embed() # this will drop us into IPython
# Misc code
Although you can use it directly as well:
import IPython
x = "foo"
print(x)
IPython.embed()
x = "bar"
print(x)