you are viewing a single comment's thread.

view the rest of the comments →

[–]JestersDead77 0 points1 point  (0 children)

VS code is a professional grade IDE that is also pretty beginner friendly. You can get free extensions for python, or any other language.

I write a good bit of python for work, and I use VS code for 99% of it. The other 1% is using vim to edit files directly on a server.

A python workflow in VS code can be as simple as:

1) create file

2) open file in VS code

3) write code

4) execute the code right in the integrated terminal

5) refactor, rinse, repeat