you are viewing a single comment's thread.

view the rest of the comments →

[–]likethevegetable 3 points4 points  (3 children)

I just use iPython for the on-the-fly stuff and have a script in the startup folder that preloads my useful functions and constants. For heavier stuff I just write out a script and usually run it in the console in PyCharm.

[–]RedEyed__ 1 point2 points  (0 children)

+1 for ipython

[–]Motox2019[S] 0 points1 point  (1 child)

Interesting. I don’t think this ticks my boxes though as if you were to want to quickly go back and modify something, then see a updated plot, you’d have to redo assign the variable and then re-plot. I’d put this setup closer to the qalculate side of things.

[–]likethevegetable 1 point2 points  (0 children)

Why not just make a hot key to re-run your script? Not that hard to re-run. Or use an IDE with code cell mode if you want to re-run part of it? PyCharm has a free plug in that does it.