+ 1

Which is the best ide for python?

12th Apr 2017, 4:14 PM
Abhishek Dogra
Abhishek Dogra - avatar
4 Answers
12th Apr 2017, 4:18 PM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 3
IDLE of python is nice
12th Apr 2017, 4:31 PM
Simone Gramegna
Simone Gramegna - avatar
+ 3
pycharm agree
12th Apr 2017, 7:31 PM
Edward
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.
13th Apr 2017, 9:21 AM
Klaus-Dieter Warzecha
Klaus-Dieter Warzecha - avatar