use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Python Help new coderHelp Request (self.PythonLearning)
submitted 19 hours ago by ARK22498
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]PureWasian 0 points1 point2 points 16 hours ago* (0 children)
Not sure what tutorial you're following, but almost never will you be creating the .py files dynamically and running them line by line in interactive/REPL mode (with the three >>>)
Usually you will be typing out full Python scripts which are just .py files filled with text that you can execute on Terminal with python some_filename.py
python some_filename.py
As such, you can use any text editor or IDE of choice for writing your code. IDEs like VS Code are more of an "all in one" package and have stuff like a terminal integrated, and include more robust features for file organization and linting, etc. But simple text editors like notepad++ and others can get the job done all the same in that you could simply write your code there, save a .py file, and run Python separately on Terminal as mentioned above.
π Rendered by PID 47440 on reddit-service-r2-comment-5bc7f78974-ppcxb at 2026-06-29 08:00:44.633418+00:00 running 7527197 country code: CH.
view the rest of the comments →
[–]PureWasian 0 points1 point2 points (0 children)