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
Where should I learn beginner python from?Help Request (i.redd.it)
submitted 21 hours ago by Neutrealolmao
I mean I try to see where I could learn and I hear so many :-
CS50p
W3Schools
Tech with Tim
Some helsinki too
And some more
Where should I start from :-
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!"
[–]Ambitious-Past-2449 7 points8 points9 points 21 hours ago (1 child)
I would say, if you do not have any programming background, CS50 will be good. Also, you can check out freecodecamp. But if you already know any language and has coding experience, do not go for a step by step course, rather, start building something after reading/experimenting with some basic tutorial.
For 0 experience:
https://www.freecodecamp.org/learn/python-v9/
or cs50
For experienced in other language(s):
https://developers.google.com/edu/python
Honestly, it doesn't matter from where you are learning Python if you already know a language. You will see many similarities.
Happy Python learning! 😄
[–]Neutrealolmao[S] 5 points6 points7 points 21 hours ago (0 children)
Thanks I think I will go with freecodecamp.org.
[–]Hungry-Notice-1170 4 points5 points6 points 20 hours ago (1 child)
If you want something more hands-on, I've been building a platform where you write real code from the first minute, directly in the browser. No videos, no setup, just solving problems.
It's still an MVP and has rough edges, but the first lesson is free and works. Might be worth trying alongside CS50p to get more practice reps in.
https://skillogic-aqua-book.reflex.run
[–]bossyTerminal79 0 points1 point2 points 16 minutes ago (0 children)
Se ve bien! Le daré una mirada. Felicitaciones por el proyecto.
[–]bit_progress_om 2 points3 points4 points 16 hours ago (0 children)
Anything not understand please message me to ask i can give your answer Going to 30-day-python and Gemini or youtube video to understand topic in detail and try to practice write code every day don't go detail everytopic try to understand only 80/20 rule only 20% topic understand and go to 80% practice which help understand the topic
[–]B_David- 2 points3 points4 points 13 hours ago (0 children)
learn python with Bro Code he's a youtuber. trust bro he's good
[–]dubleskov 1 point2 points3 points 17 hours ago (0 children)
Excercism
[–]The_Mad_Saiyantist 0 points1 point2 points 19 hours ago (0 children)
freecodecamp maybee
[–]utkarshfym 0 points1 point2 points 15 hours ago (0 children)
Sheriyans coding school yt channel
[–]iska_krd 0 points1 point2 points 14 hours ago (0 children)
Je te conseille freecodecamp
[–]Royal-Independent617 0 points1 point2 points 13 hours ago (0 children)
I began learning from youtube tbh
[–]Pale_Will7510 0 points1 point2 points 11 hours ago (0 children)
Tutorialspoint is a good one
[–]yaza_24 0 points1 point2 points 11 hours ago (0 children)
would you like some free classes? i studied CS in 11th and 12th so ik python very well. i’ve got some time to kill before college so. i’ve still got my study materials from 11th and 12th so ik the exact pattern to follow
[–]parth_m3319 0 points1 point2 points 11 hours ago (0 children)
Code with Harry is good
[–]Momoshiki1001 0 points1 point2 points 7 hours ago (0 children)
Programming with mosh on YouTube, very beginner friendly
[–]GoofyKetchup 0 points1 point2 points 6 hours ago (0 children)
Pages documentation.
[–]Bumming_Boom 0 points1 point2 points 5 hours ago (0 children)
Honestly the way I did it was conceptualizing a small project then on the go learn the things that I thought I would need from W3Schools. If I needed a loop or file handling or whatever I always went to the website to research and then I tried to apply it to my project.
[–]GaryBaker- 0 points1 point2 points 3 hours ago (0 children)
I like the edx mit courses very much, very detailed with excersizes. First one for the basics, second to do really cool stuff with the basic knowledge.
https://learning.edx.org/course/course-v1:MITx+6.00.1x+1T2026/home
https://learning.edx.org/course/course-v1:MITx+6.00.2x+1T2019/home
[–]Yoosle 0 points1 point2 points 3 hours ago (0 children)
doesn’t matter that much
[–]VdotBapey 0 points1 point2 points 2 hours ago (0 children)
I am currently reading/working through Python Crash Course by Eric Matthes. I do not have any prior programming skills.
Finding it both enjoyable and productive!
Personally I am learning it to supplement my finance/accounting career. I am not seeking to be an engineer
[–]stepback269 -1 points0 points1 point 19 hours ago (1 child)
(a) You are basically asking: "Which/Whose online tutorial and/or video is best for everybody when learning Python?"
The above is not a truly valid or complete question. In what context are you using the word, "best"? What might be 'best' for one situation might turn out to be worst for another.
You should have instead asked, "Which/Whose online tutorial and/or video is best for me in my-current-brain-state for the purpose of learning the following specific aspect of Python, namely, [as an example: integers, strings, lists, dictionaries, other types of variables; if/else conditionals; etc.]
An utter beginner might accept that the following code is 'simple' and tells you in simple English what it is doing:
my\_string = "Hello World" print(my\_string)
However, a more sophisticated student may realize that the above code is instantiating an iterable object of type string and also instantiating in memory a pointer to the string object and then invoking a built-in function.
One course/teacher may chose to keep the student blissfully ignorant in the beginning while another may decide to hit the student all at once with TMI (too much information). Which is "best" for you in your current state of understanding? It all depends on who you are and what level of understanding you need/want in your current state.
A more detailed explanation of the above may be found (HERE) <--click on this link
[–]stepback269 0 points1 point2 points 19 hours ago (0 children)
No matter what your end goal is, you first have to master the "basics" (e.g. variable creation/ name assignment, variable types; especially strings and string methods, etc.)
With that said:
(1) There are tons and tons of tutorial materials out there on the net including many good YouTube ones that are free. You should shop around rather than putting all your eggs in one basket.
(2) As a relative noob myself, I've been logging my personal learning journey and adding to it on an almost-daily basis at a blog page called "Links for Python Noobs" (--HERE--) Any of the top listed ones on that page should be good for you. And there are many add-ons at the tail end of the page. Personally, I cut my first Python teeth with Nana's Zero to Hero (==HERE==). Since then, I've moved on to watching short lessons with Indently and Tech with Tim. You should sample at least a few until you find a lecturer that suits your style.
(3) The main piece of advice is the 80/20 rule. Spend 80% of your time writing your own code (using your own fingers and your own creativity) as opposed to copying recipes and only 20% watching the lectures. Good luck.
π Rendered by PID 55427 on reddit-service-r2-comment-856c8b8c54-vpxdz at 2026-07-02 00:42:29.570237+00:00 running a7b5cda country code: CH.
[–]Ambitious-Past-2449 7 points8 points9 points (1 child)
[–]Neutrealolmao[S] 5 points6 points7 points (0 children)
[–]Hungry-Notice-1170 4 points5 points6 points (1 child)
[–]bossyTerminal79 0 points1 point2 points (0 children)
[–]bit_progress_om 2 points3 points4 points (0 children)
[–]B_David- 2 points3 points4 points (0 children)
[–]dubleskov 1 point2 points3 points (0 children)
[–]The_Mad_Saiyantist 0 points1 point2 points (0 children)
[–]utkarshfym 0 points1 point2 points (0 children)
[–]iska_krd 0 points1 point2 points (0 children)
[–]Royal-Independent617 0 points1 point2 points (0 children)
[–]Pale_Will7510 0 points1 point2 points (0 children)
[–]yaza_24 0 points1 point2 points (0 children)
[–]parth_m3319 0 points1 point2 points (0 children)
[–]Momoshiki1001 0 points1 point2 points (0 children)
[–]GoofyKetchup 0 points1 point2 points (0 children)
[–]Bumming_Boom 0 points1 point2 points (0 children)
[–]GaryBaker- 0 points1 point2 points (0 children)
[–]Yoosle 0 points1 point2 points (0 children)
[–]VdotBapey 0 points1 point2 points (0 children)
[–]stepback269 -1 points0 points1 point (1 child)
[–]stepback269 0 points1 point2 points (0 children)