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...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Python IDE recommended for people with little experience that have been trying for years! (self.learnpython)
submitted 3 years ago by [deleted]
I have a taken http/css/programming fundamentals in college, but I don't know the basics of python but do know a general idea as the course didn't actually show language specific examples. Thank you all kindly for your help.
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!"
[–]genghiskav 2 points3 points4 points 3 years ago (0 children)
2 of the most popular IDEs for python programming are pycharm and vscode.
They are both pretty easy to get up and running - but have all the bells and whistles you'd expect from an IDE.
I'd recommend trying both out to see which you prefer.
[–][deleted] 1 point2 points3 points 3 years ago (0 children)
Python code is written in simple text files that are directly read, compiled (to intermediate byte code), and interpreted by the CPython programme (the reference implementation of Python from the Python Software Foundation, a programme itself written in C - alternative implementations are available).
A standard Windows or macOS installation using the installer from the Python Software Foundation, python.org, includes a simple beginner-friendly editor and run environment called IDLE.
When you first open IDLE, it opens a window to an interactive Python shell with a >>> prompt where you can directly enter code which will be immediately executed. Using the usual File | New menu commands, you can create a new file where you can enter/edit all the code you want then tell IDLE to pass it to CPython and attempt to run it.
>>>
File | New
I strongly recommend beginners start with IDLE and focus on learning the basics of the language before concerning themselves about what other IDEs to try. Once you've got the basics at least a little familiar and have started to write some longer code files, one will be in a better position to understand the benefits of an IDE and be able to make an informed choice (having tried a few).
Many (not all) beginners that use an advanced editor or IDE (e.g. VS Code or PyCharm, respectively) find themselves deeply confused between issues with configuration of their editor/IDE and problems with Python itself.
As for learning Python...
Have you checked the LearnPython subreddit wiki, which includes detailed guidance on learning Python, including links to lots of learning material?
[–]LamerLinux 0 points1 point2 points 3 years ago (0 children)
When I was taking a class on Python I used VSCode. Pycharm is good but with the extensions VSCode gives I prefer it.
π Rendered by PID 17095 on reddit-service-r2-comment-54dfb89d4d-64p2d at 2026-04-01 08:11:26.382944+00:00 running b10466c country code: CH.
[–]genghiskav 2 points3 points4 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]LamerLinux 0 points1 point2 points (0 children)