So I am running a Python script within which I am calling Python\'s debugger, PDB by writing:
import ipdb; ipdb.set_trace()
(iPython\'s ver
Inside the Python (2.7.1) interpreter or debugger (import pdb), you can execute a multi-line statement with the following syntax.
for i in range(5): print("Hello"); print("World"); print(i)
Note: When I'm inside the interpreter, I have to hit return twice before the code will execute. Inside the debugger, however, I only have to hit return once.