💡
3

My first Python project used 200 lines of code for a simple calculator.

Now I do the same thing in 30 lines after learning about functions. What's the biggest thing that cut down your code when you started?
4 comments

Log in to join the discussion

Log In
4 Comments
ninar12
ninar122mo ago
Learning loops was a total game changer.
4
mark_carr7
mark_carr716h ago
My buddy built a countdown timer and it broke twice before it worked.
8
robin591
robin5912mo ago
What part of loops clicked for you first?
4
lilyp37
lilyp372mo ago
Totally agree with @ninar12, loops just make everything click. I remember feeling stuck until I saw how a for loop could repeat a task without all that copy-paste code. What was the first thing you built with them?
2