真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python中pdb的使用方法

這篇文章給大家分享的是有關(guān)python中pdb的使用方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了察隅免費(fèi)建站歡迎大家使用!

使用pdb進(jìn)行調(diào)試:

pdb 是 python 自帶的一個(gè)包,為 python 程序提供了一種交互的源代碼調(diào)試功能,主要特性包括設(shè)置斷點(diǎn)、單步調(diào)試、進(jìn)入函數(shù)調(diào)試、查看當(dāng)前代碼、查看棧片段、動(dòng)態(tài)改變變量的值等。pdb 提供了一些常用的調(diào)試命令,詳情見(jiàn)表 1。

表 1. pdb 常用命令

python中pdb的使用方法

下面結(jié)合具體的實(shí)例講述如何使用 pdb 進(jìn)行調(diào)試。

清單 1. 測(cè)試代碼示例

 import pdb 
 a = "aaa"
 pdb.set_trace() 
 b = "bbb"
 c = "ccc"
 final = a + b + c 
 print final

開(kāi)始調(diào)試:直接運(yùn)行腳本,會(huì)停留在 pdb.set_trace() 處,選擇 n+enter 可以執(zhí)行當(dāng)前的 statement。在第一次按下了 n+enter 之后可以直接按 enter 表示重復(fù)執(zhí)行上一條 debug 命令。

清單 2. 利用 pdb 調(diào)試

[root@rcc-pok-idg-2255 ~]#  python epdb1.py 
 > /root/epdb1.py(4)?() 
 -> b = "bbb"
 (Pdb) n 
 > /root/epdb1.py(5)?() 
 -> c = "ccc"
 (Pdb) 
 > /root/epdb1.py(6)?() 
 -> final = a + b + c 
 (Pdb) list 
  1     import pdb 
  2     a = "aaa"
  3     pdb.set_trace() 
  4     b = "bbb"
  5     c = "ccc"
  6  -> final = a + b + c 
  7     print final 
 [EOF] 
 (Pdb) 
 [EOF] 
 (Pdb) n 
 > /root/epdb1.py(7)?() 
 -> print final 
 (Pdb)

退出 debug:使用 quit 或者 q 可以退出當(dāng)前的 debug,但是 quit 會(huì)以一種非常粗魯?shù)姆绞酵顺龀绦?,其結(jié)果是直接 crash。

清單 3. 退出 debug

[root@rcc-pok-idg-2255 ~]#  python epdb1.py 
 > /root/epdb1.py(4)?() 
 -> b = "bbb"
 (Pdb) n 
 > /root/epdb1.py(5)?() 
 -> c = "ccc"
 (Pdb) q 
 Traceback (most recent call last): 
  File "epdb1.py", line 5, in ? 
    c = "ccc"
  File "epdb1.py", line 5, in ? 
    c = "ccc"
  File "/usr/lib64/python2.4/bdb.py", line 48, in trace_dispatch 
    return self.dispatch_line(frame) 
  File "/usr/lib64/python2.4/bdb.py", line 67, in dispatch_line 
    if self.quitting: raise BdbQuit 
 bdb.BdbQuit

打印變量的值:如果需要在調(diào)試過(guò)程中打印變量的值,可以直接使用 p 加上變量名,但是需要注意的是打印僅僅在當(dāng)前的 statement 已經(jīng)被執(zhí)行了之后才能看到具體的值,否則會(huì)報(bào) NameError: < exceptions.NameError … ....> 錯(cuò)誤。

清單 4. debug 過(guò)程中打印變量

[root@rcc-pok-idg-2255 ~]#  python epdb1.py 
 > /root/epdb1.py(4)?() 
 -> b = "bbb"
 (Pdb) n 
 > /root/epdb1.py(5)?() 
 -> c = "ccc"
 (Pdb) p b 
'bbb'
 (Pdb) 
'bbb'
 (Pdb) n 
 > /root/epdb1.py(6)?() 
 -> final = a + b + c 
 (Pdb) p c 
'ccc'
 (Pdb) p final 
 *** NameError:  
 (Pdb) n 
 > /root/epdb1.py(7)?() 
 -> print final 
 (Pdb) p final 
'aaabbbccc'
 (Pdb)

使用 c 可以停止當(dāng)前的 debug 使程序繼續(xù)執(zhí)行。如果在下面的程序中繼續(xù)有 set_statement() 的申明,則又會(huì)重新進(jìn)入到 debug 的狀態(tài),讀者可以在代碼 print final 之前再加上 set_trace() 驗(yàn)證。

清單 5. 停止 debug 繼續(xù)執(zhí)行程序

[root@rcc-pok-idg-2255 ~]#  python epdb1.py 
 > /root/epdb1.py(4)?() 
 -> b = "bbb"
 (Pdb) n 
 > /root/epdb1.py(5)?() 
 -> c = "ccc"
 (Pdb) c 
 aaabbbccc

顯示代碼:在 debug 的時(shí)候不一定能記住當(dāng)前的代碼塊,如要要查看具體的代碼塊,則可以通過(guò)使用 list 或者 l 命令顯示。list 會(huì)用箭頭 -> 指向當(dāng)前 debug 的語(yǔ)句。

清單 6. debug 過(guò)程中顯示代碼

[root@rcc-pok-idg-2255 ~]#  python epdb1.py 
 > /root/epdb1.py(4)?() 
 -> b = "bbb"
 (Pdb) list 
  1     import pdb 
  2     a = "aaa"
  3     pdb.set_trace() 
  4  -> b = "bbb"
  5     c = "ccc"
  6     final = a + b + c 
  7     pdb.set_trace() 
  8     print final 
 [EOF] 
 (Pdb) c 
 > /root/epdb1.py(8)?() 
 -> print final 
 (Pdb) list 
  3     pdb.set_trace() 
  4     b = "bbb"
  5     c = "ccc"
  6     final = a + b + c 
  7     pdb.set_trace() 
  8  -> print final 
 [EOF] 
 (Pdb)

在使用函數(shù)的情況下進(jìn)行 debug

清單 7. 使用函數(shù)的例子

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 進(jìn)行 debug 則到 final=combine(a,b) 這句的時(shí)候會(huì)將其當(dāng)做普通的賦值語(yǔ)句處理,進(jìn)入到 print final。如果想要對(duì)函數(shù)進(jìn)行 debug 如何處理呢 ? 可以直接使用 s 進(jìn)入函數(shù)塊。函數(shù)里面的單步調(diào)試與上面的介紹類(lèi)似。如果不想在函數(shù)里單步調(diào)試可以在斷點(diǎn)處直接按 r 退出到調(diào)用的地方。

對(duì)函數(shù)進(jìn)行 debug

[root@rcc-pok-idg-2255 ~]# python epdb2.py 
 > /root/epdb2.py(10)?() 
 -> b = "bbb"
 (Pdb) n 
 > /root/epdb2.py(11)?() 
 -> c = "ccc"
 (Pdb) n 
 > /root/epdb2.py(12)?() 
 -> final = combine(a,b) 
 (Pdb) s 
 --Call-- 
 > /root/epdb2.py(3)combine() 
 -> def combine(s1,s2):      # define subroutine combine, which... 
 (Pdb) n 
 > /root/epdb2.py(4)combine() 
 -> s3 = s1 + s2 + s1    # sandwiches s2 between copies of s1, ... 
 (Pdb) list 
  1     import pdb 
  2 
  3     def combine(s1,s2):      # define subroutine combine, which... 
  4  ->     s3 = s1 + s2 + s1    # sandwiches s2 between copies of s1, ... 
  5         s3 = '"' + s3 +'"'   # encloses it in double quotes,... 
  6         return s3            # and returns it. 
  7 
  8     a = "aaa"
  9     pdb.set_trace() 
 10     b = "bbb"
 11     c = "ccc"
 (Pdb) n 
 > /root/epdb2.py(5)combine() 
 -> s3 = '"' + s3 +'"'   # encloses it in double quotes,... 
 (Pdb) n 
 > /root/epdb2.py(6)combine() 
 -> return s3            # and returns it. 
 (Pdb) n 
 --Return-- 
 > /root/epdb2.py(6)combine()->'"aaabbbaaa"'
 -> return s3            # and returns it. 
 (Pdb) n 
 > /root/epdb2.py(13)?() 
 -> print final 
 (Pdb)

在調(diào)試的時(shí)候動(dòng)態(tài)改變值 。在調(diào)試的時(shí)候可以動(dòng)態(tài)改變變量的值,具體如下實(shí)例。需要注意的是下面有個(gè)錯(cuò)誤,原因是 b 已經(jīng)被賦值了,如果想重新改變 b 的賦值,則應(yīng)該使用! B。

清單 9. 在調(diào)試的時(shí)候動(dòng)態(tài)改變值

[root@rcc-pok-idg-2255 ~]# python epdb2.py 
 > /root/epdb2.py(10)?() 
 -> b = "bbb"
 (Pdb) var = "1234"
 (Pdb) b = "avfe"
 *** The specified object '= "avfe"' is not a function 
 or was not found along sys.path. 
 (Pdb) !b="afdfd"
 (Pdb)

感謝各位的閱讀!關(guān)于python中pdb的使用方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


本文題目:python中pdb的使用方法
新聞來(lái)源:http://weahome.cn/article/jgoogc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部