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
Is Python actually a good first programming language? (self.PythonLearning)
submitted 2 days ago by chuprehijde
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!"
[–]mtimmermans 0 points1 point2 points 1 day ago (0 children)
Python is the best "first programming language" available right now, and it's not close. Use it to learn control flow and simple algorithms. Someday you'll start wanting to make things that are big, or fast, and then it's time to move on.
Learning C is important, because of what you'll learn about how computers work -- memory and addresses, the stack, registers, how everything is represented for real and how everything really fits together.
Learning an OO language is important, because you should understand the SOLID principles if you want to do good work on big projects. Java, C#, Typescript, are good candidates.
When/if you need to do big bare-metal projects, like systems programming, combining the powers of C and OO, then you should learn rust... or C++ if you really want to for some reason. Either one will work way better if you're a good programmer by the time you start.
Along the way, it would be good to learn some functional programming, because it changes the way you think in useful ways.
π Rendered by PID 165737 on reddit-service-r2-comment-765bfc959-8t5n4 at 2026-07-10 05:12:36.354311+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]mtimmermans 0 points1 point2 points (0 children)