溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python?pdb調(diào)試器如何使用

發(fā)布時間:2022-06-13 09:42:05 來源:億速云 閱讀:141 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了python pdb調(diào)試器如何使用的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇python pdb調(diào)試器如何使用文章都會有所收獲,下面我們一起來看看吧。

    pdb 使用方法

    1. 常用命令

    a. 斷點設(shè)置

    b(reak) [([filename:]lineno | function) [, condition]]

    如果帶有 lineno 參數(shù),則在當前文件相應行處設(shè)置一個斷點。如果帶有 function 參數(shù),則在該函數(shù)的第一條可執(zhí)行語句處設(shè)置一個斷點。行號可以加上文件名和冒號作為前綴,以在另一個文件(可能是尚未加載的文件)中設(shè)置一個斷點。另一個文件將在 sys.path 范圍內(nèi)搜索。請注意,每個斷點都分配有一個編號,其他所有斷點命令都引用該編號。

    如果第二個參數(shù)存在,它應該是一個表達式,且它的計算值為 true 時斷點才起作用。

    如果不帶參數(shù)執(zhí)行,將列出所有中斷,包括每個斷點、命中該斷點的次數(shù)、當前的忽略次數(shù)以及關(guān)聯(lián)的條件(如果有)。

    tbreak [([filename:]lineno | function) [, condition]]

    臨時斷點,在第一次命中時會自動刪除。它的參數(shù)與 break 相同。

    cl(ear) [filename:lineno | bpnumber …]

    如果參數(shù)是 filename:lineno,則清除此行上的所有斷點。如果參數(shù)是空格分隔的斷點編號列表,則清除這些斷點。如果不帶參數(shù),則清除所有斷點(但會先提示確認)。

    b. 運行

    n(ext)

    繼續(xù)運行,直到運行到當前函數(shù)的下一行,或當前函數(shù)返回為止。( nextstep 之間的區(qū)別在于,step 進入被調(diào)用函數(shù)內(nèi)部并停止,而 next (幾乎)全速運行被調(diào)用函數(shù),僅在當前函數(shù)的下一行停止。)

    s(tep)

    運行當前行,在第一個可以停止的位置(在被調(diào)用的函數(shù)內(nèi)部或在當前函數(shù)的下一行)停下。

    c(ont(inue))

    繼續(xù)運行,僅在遇到斷點時停止。

    r(eturn)

    繼續(xù)運行,直到當前函數(shù)返回。

    c. 查看

    p expression

    在當前上下文中運行 expression 并打印它的值。

    print() 也可以使用,但它不是一個調(diào)試器命令 — 它執(zhí)行 Python print() 函數(shù)。

    pp expression

    p 命令類似,但表達式的值使用 pprint 模塊美觀地打印。

    d. 其他

    h(elp) [command]

    不帶參數(shù)時,顯示可用的命令列表。參數(shù)為 command 時,打印有關(guān)該命令的幫助。help pdb 顯示完整文檔(即 pdb 模塊的文檔字符串)。由于 command 參數(shù)必須是標識符,因此要獲取 ! 的幫助必須輸入 help exec

    q(uit)

    退出調(diào)試器。 被執(zhí)行的程序?qū)⒈恢兄埂?/p>

    2. 使用方法一

    python3 -m pdb test.py

    這里程序來自于 無重復字符的最長子串 。

    def lengthOfLongestSubstring(s: str) -> int:
        st = set()
        n = len(s)
        right, result = -1, 0
        for left in range(n):
            if left!=0: st.remove(s[left - 1])
            while right + 1 < n and s[right + 1] not in st:
                st.add(s[right + 1])
                right += 1
            result = max(result, right - left + 1)
        return result
    
    if __name__=='__main__':
        print(lengthOfLongestSubstring("abcabcbb"))

    輸入 python3 -m pdb test.py 會自動停在第一行

    (base) cilinyan@amax:~/clyan/xshell$ python3 -m pdb test.py
    > /data2/cilinyan/clyan/xshell/test.py(1)<module>()
    -> def lengthOfLongestSubstring(s: str) -> int:

    以下是 python3 -m pdb test.py 的一些使用過程:

    (base) cilinyan@amax:~/clyan/xshell$ python3 -m pdb test.py
    > /data2/cilinyan/clyan/xshell/test.py(1)<module>()
    -> def lengthOfLongestSubstring(s: str) -> int:
    (Pdb) ll
      1  ->	def lengthOfLongestSubstring(s: str) -> int:
      2  	    st = set()
      3  	    n = len(s)
      4  	    right, result = -1, 0
      5  	    for left in range(n):
      6  	        if left!=0: st.remove(s[left - 1])
      7  	        while right + 1 < n and s[right + 1] not in st:
      8  	            st.add(s[right + 1])
      9  	            right += 1
     10  	        result = max(result, right - left + 1)
     11  	    return result
     12  	
     13  	if __name__=='__main__':
     14  	    print(lengthOfLongestSubstring("abcabcbb"))
    (Pdb) b 5
    Breakpoint 1 at /data2/cilinyan/clyan/xshell/test.py:5
    (Pdb) ll
      1  	def lengthOfLongestSubstring(s: str) -> int:
      2  	    st = set()
      3  	    n = len(s)
      4  	    right, result = -1, 0
      5 B->	    for left in range(n):
      6  	        if left!=0: st.remove(s[left - 1])
      7  	        while right + 1 < n and s[right + 1] not in st:
      8  	            st.add(s[right + 1])
      9  	            right += 1
     10  	        result = max(result, right - left + 1)
     11  	    return result
    (Pdb) p right
    -1
    (Pdb) p s
    'abcabcbb'

    3. 使用方法二

    import pdb; pdb.set_trace()

    這里程序來自于 無重復字符的最長子串 。

    import pdb
    def lengthOfLongestSubstring(s: str) -> int:
        st = set()
        n = len(s)
        right, result = -1, 0
        pdb.set_trace()
        for left in range(n):
            if left!=0: st.remove(s[left - 1])
            while right + 1 < n and s[right + 1] not in st:
                st.add(s[right + 1])
                right += 1
            result = max(result, right - left + 1)
        pdb.set_trace()
        return result
    
    if __name__=='__main__':
        print(lengthOfLongestSubstring("abcabcbb"))

    輸入 python test.py 會自動設(shè)置 pdb.set_trace() 的下一行,以下是一些使用過程:

    (base) cilinyan@amax:~/clyan/xshell$ python test.py
    > /data2/cilinyan/clyan/xshell/test.py(8)lengthOfLongestSubstring()
    -> for left in range(n):
    (Pdb) n
    > /data2/cilinyan/clyan/xshell/test.py(9)lengthOfLongestSubstring()
    -> if left!=0: st.remove(s[left - 1])
    (Pdb) n
    > /data2/cilinyan/clyan/xshell/test.py(10)lengthOfLongestSubstring()
    -> while right + 1 < n and s[right + 1] not in st:
    (Pdb) c
    > /data2/cilinyan/clyan/xshell/test.py(15)lengthOfLongestSubstring()
    -> return result
    (Pdb) c
    3
    (base) cilinyan@amax:~/clyan/xshell$

    關(guān)于“python pdb調(diào)試器如何使用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“python pdb調(diào)試器如何使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

    向AI問一下細節(jié)

    免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI