Debugging
In this week, I started a new
chapter called debugging which teaches you how to debug with python. Debugging is
checking through each line of code to see for bugs and then remove the bugs (in
other words ‘errors’). In python there
is a debugger to do the debugging for you, and in this debugger you can step through
the lines of code using the step tool. The chapter also talks about debugging
local area and global area. local area means the functions in your program, and
global means the code outside the functions. I later knew that programming is
not only writing lines of code, you must debug the lines. Programming is just
like literature, first you write then, you review for mistakes. Here is a video to teach you about debugging in python:
Comments
Post a Comment