The code below shows an example where a breakpoint is set inside a for loop. import pdb for i in range(10): pdb.set_trace() i_square = i * i print("The square ...
確定! 回上一頁