+ 1
Which is the best ide for python?
4 Answers
+ 3
IDLE of python is nice
+ 3
pycharm agree
0
It depends, but I really like to use the Jupyter notebook
https://jupyter.readthedocs.io/en/latest/
You can check it out online at https://try.jupyter.org/
The advantages are:
I can run the the code in a browser.
I can embed chunks of text and graphics. The notebook consists of cells. A cell can be a Code Cell or a Markdown Cell. In a Markdown Cell, text can be properly styled with the Markdown language, which, btw, is a feature I'm really missing here. Note that these cells also support LaTeX, which is great when you need to display math.
The notebooks support inline visualization using matplotlib (or whatever your prefered plot library is).
If necessary, code can be exported to normal py files.
In summary, the Jupyter notebook is an excellent tool to develop and to present results in talks.