import pdb module import pdb # recursive function def recursive_func(c): if c > 0: # tracing pdb.set_trace() recursive_func(c//2) else: ...
確定! 回上一頁