python?pdb調(diào)試器及使用方法
pdb 使用方法
1. 常用命令
a. 斷點(diǎn)設(shè)置
b(reak)
[([filename:]lineno | function) [, condition]]
如果帶有 lineno 參數(shù),則在當(dāng)前文件相應(yīng)行處設(shè)置一個(gè)斷點(diǎn)。如果帶有 function 參數(shù),則在該函數(shù)的第一條可執(zhí)行語(yǔ)句處設(shè)置一個(gè)斷點(diǎn)。行號(hào)可以加上文件名和冒號(hào)作為前綴,以在另一個(gè)文件(可能是尚未加載的文件)中設(shè)置一個(gè)斷點(diǎn)。另一個(gè)文件將在 sys.path
范圍內(nèi)搜索。請(qǐng)注意,每個(gè)斷點(diǎn)都分配有一個(gè)編號(hào),其他所有斷點(diǎn)命令都引用該編號(hào)。
如果第二個(gè)參數(shù)存在,它應(yīng)該是一個(gè)表達(dá)式,且它的計(jì)算值為 true 時(shí)斷點(diǎn)才起作用。
如果不帶參數(shù)執(zhí)行,將列出所有中斷,包括每個(gè)斷點(diǎn)、命中該斷點(diǎn)的次數(shù)、當(dāng)前的忽略次數(shù)以及關(guān)聯(lián)的條件(如果有)。
tbreak
[([filename:]lineno | function) [, condition]]
臨時(shí)斷點(diǎn),在第一次命中時(shí)會(huì)自動(dòng)刪除。它的參數(shù)與 break
相同。
cl(ear)
[filename:lineno | bpnumber …]
如果參數(shù)是 filename:lineno,則清除此行上的所有斷點(diǎn)。如果參數(shù)是空格分隔的斷點(diǎn)編號(hào)列表,則清除這些斷點(diǎn)。如果不帶參數(shù),則清除所有斷點(diǎn)(但會(huì)先提示確認(rèn))。
b. 運(yùn)行
n(ext)
繼續(xù)運(yùn)行,直到運(yùn)行到當(dāng)前函數(shù)的下一行,或當(dāng)前函數(shù)返回為止。( next
和 step
之間的區(qū)別在于,step
進(jìn)入被調(diào)用函數(shù)內(nèi)部并停止,而 next
(幾乎)全速運(yùn)行被調(diào)用函數(shù),僅在當(dāng)前函數(shù)的下一行停止。)
s(tep)
運(yùn)行當(dāng)前行,在第一個(gè)可以停止的位置(在被調(diào)用的函數(shù)內(nèi)部或在當(dāng)前函數(shù)的下一行)停下。
c(ont(inue))
繼續(xù)運(yùn)行,僅在遇到斷點(diǎn)時(shí)停止。
r(eturn)
繼續(xù)運(yùn)行,直到當(dāng)前函數(shù)返回。
c. 查看
p expression
在當(dāng)前上下文中運(yùn)行 expression 并打印它的值。
print() 也可以使用,但它不是一個(gè)調(diào)試器命令 — 它執(zhí)行 Python print()
函數(shù)。
pp expression
與 p
命令類似,但表達(dá)式的值使用 pprint
模塊美觀地打印。
d. 其他
h(elp)
[command]
不帶參數(shù)時(shí),顯示可用的命令列表。參數(shù)為 command 時(shí),打印有關(guān)該命令的幫助。help pdb
顯示完整文檔(即 pdb
模塊的文檔字符串)。由于 command 參數(shù)必須是標(biāo)識(shí)符,因此要獲取 !
的幫助必須輸入 help exec
。
q(uit)
退出調(diào)試器。 被執(zhí)行的程序?qū)⒈恢兄埂?/p>
2. 使用方法一
python3 -m pdb test.py
這里程序來(lái)自于 無(wú)重復(fù)字符的最長(zhǎng)子串 。
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
會(huì)自動(dòng)停在第一行
(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
的一些使用過(guò)程:
(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()
這里程序來(lái)自于 無(wú)重復(fù)字符的最長(zhǎng)子串 。
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
會(huì)自動(dòng)設(shè)置 pdb.set_trace()
的下一行,以下是一些使用過(guò)程:
(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)試器的文章就介紹到這了,更多相關(guān)python pdb調(diào)試器內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
利用python+ffmpeg合并B站視頻及格式轉(zhuǎn)換的實(shí)例代碼
這篇文章主要介紹了利用python+ffmpeg合并B站視頻及格式轉(zhuǎn)換的實(shí)例代碼,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-11-11Python實(shí)現(xiàn)數(shù)值積分方式
今天小編就為大家分享一篇Python實(shí)現(xiàn)數(shù)值積分方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-11-11pandas數(shù)據(jù)類型之Series的具體使用
本文主要介紹了pandas數(shù)據(jù)類型之Series的具體使用,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2022-08-08使用virtualenv創(chuàng)建Python環(huán)境及PyQT5環(huán)境配置的方法
這篇文章主要介紹了使用virtualenv創(chuàng)建Python環(huán)境及PyQT5環(huán)境配置的方法,本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-09-09python工具快速為音視頻自動(dòng)生成字幕(使用說(shuō)明)
這篇文章主要介紹了python工具快速為音視頻自動(dòng)生成字幕(使用說(shuō)明),本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-01-01Python+OpenCV實(shí)現(xiàn)在圖像上繪制矩形
這篇文章主要介紹了如何利用Python和OpenCV實(shí)現(xiàn)在圖像上繪制任意大小的矩形,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以參考一下2022-03-03Pycharm中配置Jupyter環(huán)境的圖文教程
本文主要介紹了Pycharm中配置Jupyter環(huán)境的圖文教程,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2023-07-07