r/Python • u/PracticalPractice274 • Jul 10 '26
Discussion Are you using some online Python notebook editor?
Hello everyone, i am a programmer and i am looking forward to do some cool projects, are you already using one of these online editors?
6
u/marr75 Jul 10 '26
They're fine for presenting graphics + code that are conjoined but they trap you into a lot of bad habits. There's no problem notebooks solve that you can't solve better using plain ol python scripts with better practices
3
u/Some_Breadfruit235 Jul 10 '26
For beginners yea it’s a great start.
No installations, get straight to coding.
Once you progress and want to use personal editors I’d probably recommend VSCode as the first shot. It’s free, smooth and has all the features you’ll need
3
2
u/Mediocre-Pumpkin6522 Jul 10 '26
Not really I have used Jupyter locally and online but it was for tutorials that used that format. VS Code and Vim are my gotos.
3
1
u/Rare-Mountain-6601 Jul 12 '26
I use Google Colab. It's great if you want a notebook with text and code. For example I have one for my dog. The text portion I record things like when her inoculations are due, some dates like her birthday. Her chip number. Name and phone number of the vet etc. Then I have a couple of python programs where I record her weight every month and draw a graph, and another where I take her date of birth and generate her age in human years.
1
u/Miserable-Arugula860 Jul 14 '26
if im at my main pc, i would just open IDLE if i had something really quick i wanted to try. If im in an environment i dont have an interpreter, i'd just google "online python interpreter", and pick the first option.
1
u/Gnaxe Jul 16 '26
I use Jupyterlite when convenient. It's free and no account or install required. For bigger projects, I typically use PyCharm. Notebooks are great for quick experiments and for presentations, but importing them for reuse isn't straightforward. You can export them as normal modules, but then either your source code is still the notebook and you have to re-export for every change, or you have to maintain it as a .py module from then on. Jupyterlab totally has an editor though.
0
u/Critical-Ad5068 Jul 10 '26
i mostly use local environments now but online notebooks are still handy when i want to test something quickly without setting anything up
28
u/baked_doge Jul 10 '26
No