二手产品经理

二手产品经理

THIS IS RENO

Debugger - 58 Days - Online Learning Python for 100 Days

Learning Debugger Code Today#

Today I learned how to use the Debugger to debug code. On the line where debugging is needed, I can open a blue dot and then click the "play" button on the left side, and the program will run automatically. When the program reaches the line with the blue dot, it will stop and wait for commands.

During the debugging process, I can perform the following four operations:

  1. Stop: Stop the execution of the program.
  2. Next step/Next line: Execute the next step (or next line) of code.
  3. Skip step: Skip the current step and directly execute the next step (or next line) of code.
  4. Next breakpoint: Jump to the next breakpoint.

Today's learning task did not require writing new code, but rather practicing operations using the Debugger system.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.