linux学习记录
分类:
2008-11-25 14:40:40
文件变成:# epdb1.py -- experiment with the Python debugger, pdb
a = "aaa"
b = "bbb"
c = "ccc"
final = a + b + c
print final
比如要对这个程序进行调试:
1:在文件前面加上这一句,引入调试的模块。
import pdb
2:在要开始调试的一行加上pdb.set_trace()
# epdb1.py -- experiment with the Python debugger, pdb可以运行这个程序,到断点出会停下来,和gdb类似,
import pdb
a = "aaa"
pdb.set_trace()
b = "bbb"
c = "ccc"
final = a + b + c
print final