Zero-to-Debugging in 15 mins
You donβt realize the value of a debugger until youβre stuck working on a hard-to-visualize problem. But once you fire up a development environment with decent debugging capabilities, youβll never look back.
Want to know where youβre at in code execution? Whatβs taking so long? Just pause it and check.
Wonder what value is assigned to that variable? Mouse over it.
Want to skip a bunch of code and continue running from a different section? Go for it.
Sometimes print(variable_name)
is just not enough to give you an idea of whatβs going on with your project. This is when a good debugger can help you figuring things out.
Top comments (0)