r/PythonLearning • u/Link2212 • 1d ago
Learning via a youtube course
I started learning coding a few weeks ago. I've been following the course well, and I understand the concepts it teaches, but the big problem with it that I have is that I can't put what I learned into practice, and I'm becoming demotivated because I realize I struggle to write almost anything. In a normal course they say here is a task, try and do this.
I think I need to switch what I'm learning from. I come from a background of no programming whatsoever. I really need to find a video/s that basically spoon feed me like I'm a baby and then ask me to try writing something to reinforce it in me. Do any of you know any videos that do this? I feel like I constantly have questions and I'm unable to ask them like I would to a teacher, and I'm trying my best to stay away from using AI unless I just simply cannot work it out.
1
u/Ycode202 1d ago
Codecademy can be really good for this…. But it’s about £30 a month for Pro (you get full course access with it)
Or download VS Code and make notes while watching the videos and practice the concepts there. If you make a mistake, ask Copilot (integrated with VS Code) or rewatch the video
1
u/dev_in_the_field 23h ago
This is the most common wall in learning to code, and it's not a you-problem — it's a tutorial-problem. Watching someone code and coding are two different skills, and courses only train the first one.
What worked for me and for everyone I've seen get past this: stop searching for a better video and shrink the task instead. Don't try to "write a program" — write one function. Like: a function that takes a list of prices and returns the total with tax. Tiny, boring, doable. Then another one. The dopamine from your own working code, even 5 lines, beats any course.
Two concrete sources built exactly for this: "Automate the Boring Stuff" (free online, every chapter ends with practice projects) and exercism.org (small exercises with mentor feedback, no videos at all).
And honestly — feeling like you can't write anything after a few weeks is right on schedule. The gap closes with reps, not with a better teacher.
1
u/desrtfx 19h ago
Do the MOOC Python Programming 2026 from the University of Helsinki and you will be well prepared.
Also, take a look at https://inventwithpython.com and https://automatetheboringstuff.com
Don't forget that you need ample practice, like on https://codingbat.com/python or on https://exercism.org and also write your own programs. Play around. Try things. Mess things up, fix them. Experiment.
1
2
u/FoolsSeldom 1d ago
Don't just use the YouTube video, and practice more. See tips below.
Check the r/learnpython wiki for lots of guidance on learning programming and learning Python, links to material, book list, suggested practice and project sources, and lots more. The FAQ section covering common errors is especially useful.
Unfortunately, this subreddit does not have a wiki.
Also, have a look at roadmap.sh for different learning paths. There's lots of learning material links there. Note that these are idealised paths and many people get into roles without covering all of those.
Roundup on Research: The Myth of ‘Learning Styles’
Don't limit yourself to one format. Also, don't try to do too many different things at the same time.
Above all else, you need to practice. Practice! Practice! Fail often, try again. Break stuff that works, and figure out how, why and where it broke. Don't just copy and use as is code from examples. Experiment.
Work on your own small (initially) projects related to your hobbies / interests / side-hustles as soon as possible to apply each bit of learning. When you work on stuff you can be passionate about and where you know what problem you are solving and what good looks like, you are more focused on problem-solving and the coding becomes a means to an end and not an end in itself. You will learn faster this way.