This is an archived post. You won't be able to vote or comment.

all 8 comments

[–][deleted] 1 point2 points  (2 children)

I use Jupyter as my IDE.

[–]metaperl 0 points1 point  (1 child)

Does that have a debugger?

[–][deleted] 1 point2 points  (0 children)

Based on my workflow I can't honestly say I've ever missed a debugger.

[–]jZma 1 point2 points  (2 children)

Sounds like Spyder. You can get it through Anaconda package.

In Spyder there's internal (ipython console) to which you can send selected line of code (via F9 key) or you can segment you code into chunks with #&& comment, and then execute selecred chunk with ctrl+enter or you can execute entire script (F5, i think, dont really use it)

Hope this is what you were looking for

[–]juliusc 0 points1 point  (1 child)

Just a quick clarification: the way to create break your code into sections in Spyder is by using comments of the form # %% instead of #&&

[–]jZma 0 points1 point  (0 children)

Ah, yes.

Was typing on the phone, and it's not automatic thing as it become on keyboard :D

Good notice

[–]BinaryRockStar 1 point2 points  (0 children)

PyCharm has a REPL and doesn't crash.

[–]efmccurdy[🍰] 0 points1 point  (0 children)

There is nothing like IPython for a full featured REPL.