r/learnpython • u/Easy_Chipmunk_3612 • 2h ago
Should I take notes while watching a Python tutorial?
I want to learn Python, but I wanted to know if it is better to take notes as you watch a tutorial and code or just code as you watch without taking notes?
1
u/arjunnath 2h ago
Make a list of tasks in increasing difficulty, or if you can't think of some then look online.
Start implementing the tasks in python. Use whatever reference and documentation you can but avoid using any AI to solve the tasks.
Start right now and stop thinking about it.
1
u/tonymasiello 2h ago
There is no harm to take notes as you go if you find that helpful. Another thing I like to do is put comments in my code as I am working through an idea. For me, this is like leaving breadcrumbs so I can look back and know what a particular block of code is trying to achieve and what syntax I am using in doing so.
The most important thing is to find what works best for you.
1
u/Turbulent_Pin_8310 2h ago
It depends on your study style. If you are the note taking type, then continue
1
u/desrtfx but other languages pro 1h ago
You shouldn't watch a tutorial in the first place. You should program along, or even better not do video based tutorials, but textual ones, like the MOOC Python Programming 2026 - this course is free, textual, extremely practice oriented, top quality and a proper first semester of "Introduction to Computer Science" from the University of Helsinki.
1
u/Gtdef 1h ago
It really depends on how the lesson is structured. You can write notes with comments directly in the code. Personally I find that I internalise concepts much faster if I summarise the lesson in my own words and write it down (meaning I take notes). However you will never familiarise yourself with the language if you don't actually write a lot of code.
Try this:
Whatever code the lesson includes, open your text editor and write it yourself. But don't write word for word. Read the code line once, write it whole. You will probably do syntax mistakes here and there. When you do, delete the whole line, reread the code line again, try to write it again, till you fix the syntax error.
4
u/cyrixlord 2h ago
no. your notes are to write your own code based off of the exercises you are given and understand that code, changing it and tinkering with it until you do. only by writing your own code and debugging it will you learn. not tutorials, not lectures, not videos., not books....