18
YouTube tutorials vs. reading documentation - which actually works better for beginners?
I've been trying to learn Python for about 3 months now and I keep going back and forth between watching YouTube videos and reading the official docs. The videos are great because you can see someone actually typing the code and explaining their thinking in real time. But then I find myself pausing every 30 seconds to catch up, and sometimes the video is 45 minutes for something the docs explain in 3 paragraphs. On the other hand, the docs feel dry and I get lost in the technical language pretty fast. Just last week I tried learning about dictionaries from a 20 minute video and got nothing out of it. Then I spent 10 minutes reading the Python docs and it actually clicked. Has anyone else had one approach work way better than the other for certain topics?
2 comments
Log in to join the discussion
Log In2 Comments
paulperez1mo ago
Did you try the docs first for dictionaries or did the video mess you up?
0
rivera.simon1mo ago
Honestly, I tried the video first and it totally messed me up. The guy showed some custom sort function and I got all lost. Then I went back to the official docs and it clicked way better. Their examples are simple and they explain the different ways to make a dict without all the extra fluff. Tbh, the video made it seem harder than it actually is. Once I just read the basic syntax and tried it myself, it was super easy.
7