1. 程式人生 > >python中pdb的使用教程

python中pdb的使用教程

1.執行指令碼至斷點pdb.set_trace()處,n+enter/enter執行當前的statement

2.推出debug:quit/q,暴力退出

3.列印變數的值:p 變數A(條件是A已經執行得到)

4.停止debug繼續執行程式:c

5.debug過程中顯示程式碼:list/l

6.使用函式:

import pdb def combine(s1,s2): # define subroutine combine, which... s3 = s1 + s2 + s1 # sandwiches s2 between copies of s1, ... s3 = '"' + s3 +'"' # encloses it in double quotes,... return s3 # and returns it. a = "aaa" pdb.set_trace() b = "bbb" c = "ccc" final = combine(a,b) print final

1

2

3

4

5

6

7

8

9

10

11

import pdb

def combine(s1,s2):      # define subroutine combine, which...

    s3 = s1 + s2 + s1    # sandwiches s2 between copies of s1, ...

    s3 = '"' + s3 +'"'   # encloses it in double quotes,...

    return s3            # and returns it.

a = "aaa"

pdb.set_trace()

b = "bbb"

c = "ccc"

final = combine(a,b)

print final

如果直接使用 n 進行 debug 則到 final=combine(a,b) 這句的時候會將其當做普通的賦值語句處理,進入到 print final。如果想要對函式進行 debug 如何處理呢 ? 可以直接使用 s 進入函式塊。函式裡面的單步除錯與上面的介紹類似。如果不想在函式裡單步除錯可以在斷點處直接按 r 退出到呼叫的地方。

7.在除錯的時候動態改變值

在除錯的時候動態改變值 。在除錯的時候可以動態改變變數的值,具體如下例項。需要注意的是下面有個錯誤,原因是 b 已經被賦值了,如果想重新改變 b 的賦值,則應該使用!b