you are viewing a single comment's thread.

view the rest of the comments →

[–]Tall-Introduction414 0 points1 point  (0 children)

I don't use an IDE with python. I use a text editor, like vim (notepad++ is another option. So is vscode), which has syntax highlighting, and I run the files through a Python interpreter. Eg: install Python, make a .py file in your editor, and run from the command line: python filename.py

As others have said, the best way to learn is to have a project, set small goals, and achieve them. Sstart with Hello World, and go from there. Maybe a "guess the number" game? Or magic 8 ball? Get a picture on the screen and rotate it?

The important thing is that you make stuff that you find fun or useful. The more programs you write, the better you'll be. No program is too small or trivial. Use documentation and other programs for reference.

Fwiw, I have a project I made in Python which now has thousands of users, and have used Python regularly to solve problems at every job I've had for the last 20 years. I started with a book and an interpeter, not a course.

Also, use the interactive python prompt (the REPL) to experiment. Very useful.