T
16

Hit 500 lines of code on my first real project and it broke everything

I started building a simple to-do list app in Python about two weeks ago, and yesterday I hit 500 lines of code for the first time. I felt proud for like 5 minutes until I ran it and got like 20 errors I couldn't even understand. Any tips on how to keep your code organized as a beginner when you start adding more features?
1 comments

Log in to join the discussion

Log In
1 Comment
oliver_torres4
oliver_torres41mo agoTop Commenter
Oh man I know that feeling too well. I once spent 3 hours trying to fix a bug that turned out to be a missing comma. Just start using functions for everything even if it feels stupid at first.
3