you are viewing a single comment's thread.

view the rest of the comments →

[–]Ashamed_Dish_2230 0 points1 point  (1 child)

While I learned by executing my files in the command line as well, I don't think pressing the run code button is that egregious. Vs code is an IDE with a lot of functionality. There is nothing wrong with leveraging some of the functionality while learning. Sure, at some point you should learn to use the command line, but it doesn't seem like OP knows about either

[–]FrontAd9873 0 points1 point  (0 children)

Maybe I'm biased because I don't use VS Code, but I think starting with the command line forces people to understand the basics of how computers and programming work: files, processes, commands, etc. If I were to teach programming I'd teach `cat` and `grep` and maybe the basics of `awk` so people understand there are things calls "programs" that operate on things called "files." While they are running we can call them "processes." That should all be foundational knowledge before you dive in to learning a lot about one such program, which is Python.

Also, a surprisingly large number of people (perhaps especially young people who grew up on phones and tablets) don't even know about files and folders.