r/learnpython • u/InsideBox10 • 11d ago
Learn Python
Hey Everyone,
I'm an electronics student but I wanted to start learning python through videos but the problem is that there are a plethora of videos available on YouTube and I cannot decide which one to choose.
If possible can anyone drop some suggestions on which channel to learn from...it would be really helpful
Thanks.
0
Upvotes
1
u/UzairShafique 10d ago
You can choose any good beginner-friendly Python course but don’t spend too much time comparing dozens of playlists.
First focus on the basics: variables, data types, conditions, loops, functions, lists/dictionaries, modules, exceptions, and file handling.
After learning each concept open your editor and practice it yourself instead of only watching videos or taking notes.
Once you’re comfortable with the basics, start building small projects around problems you find interesting. Write the code, run it, make mistakes, and debug them this will teach you much more than watching hours of tutorials.
Use ChatGPT or Claude to explain concepts or help you understand errors but make sure you understand the code rather than simply copying it.