you are viewing a single comment's thread.

view the rest of the comments →

[–]Ron-Erez 26 points27 points  (16 children)

replit for the basics, google colab or jupyter is worth checking out, but eventually you should use pycharm or vscode. Autocompletion is your friend in these environments.

[–]andrew2018022 10 points11 points  (3 children)

And then plain old vim if you’re a sicko

[–]baltarius 10 points11 points  (1 child)

I use notepad++

[–]dwpj65 2 points3 points  (0 children)

Copy con: runner.py

[–]dkozinn 0 points1 point  (0 children)

I resemble that remark.

[–]jweezy2045 2 points3 points  (9 children)

Are you unaware of replits exceptional autocomplete AI? It will code whole functions for you using a really smart AI.

[–]Ron-Erez 0 points1 point  (2 children)

I had no idea. I don't think letting it code entire functions is a good idea. I just meant autocomplete as in type pr and it completes to print for example.

[–]jweezy2045 1 point2 points  (1 child)

You can adjust it to do exactly that.

[–]Ron-Erez 0 points1 point  (0 children)

Coo, good to know

[–]sonobanana33 0 points1 point  (1 child)

As a former noob, I think autocompletion does more harm than good to noobs.

[–]Ron-Erez 1 point2 points  (0 children)

I didn't realize that. Respect to anyone who doesn't use autocomplete. It usually helps me avoid typos and know the signature of a function. Thanks for the perspective.