What is 'Debugging' in Python?

Asked by stem_mind · 3 months ago

1 Answer

56
amorebise · 3 months ago Top Answer

Debugging is being the detective of your own code. You follow the path of the data to see where it got 'lost' or 'changed' incorrectly.

It’s 90% of a programmer's life. Don't be ashamed of bugs; be proud of how you fix them. Each bug fixed is a bit of wisdom gained.

Log in to add a comment.