3.3. Beginning tips for Debugging

Debugging a program is a different way of thinking than writing a program. The process of debugging is much more like being a detective. Here are a few rules to get you thinking about debugging.

  1. Everyone is a suspect (Except Python)! It’s common for beginner programmers to blame Python, but that should be your last resort. Remember that Python has been used to solve CS1 level problems millions of times by millions of other programmers. So, Python is probably not the problem.

  2. Find clues. This is the biggest job of the detective and right now there are two important kinds of clues for you to understand.

    • Error Messages

    • Print Statements

You have attempted of activities on this page