Which Python IDE can run my script line-by-line?

Viewed 26912

I wouldn't call myself programmer, but I've started learning Python recently and really enjoy it.

I mainly use it for small tasks so far - scripting, text processing, KML generation and ArcGIS.

From my experience with R (working with excellent Notepad++ and NppToR combo) I usually try to work with my scripts line by line (or region by region) in order to understand what each step of my script is doing.. and to check results on the fly.

My question: is there and IDE (or editor?) for Windows that lets you evaluate single line of Python script?

I have seen quite a lot of discussion regarding IDEs in Python context.. but havent stubled upon this specific question so far.

Thanks for help!

16 Answers

The upcoming RStudio 1.2 is so good that you have to try to write some python with it.

Light Table was doing that for me, unfortunately it is discontinued:

INLINE EVALUTION No more printing to the console in order to view your results. Simply evaluate your code and the results will be displayed inline.

enter image description here

Related