python debug【】

python 语言如何debug
2012-04-04 22:09

一直喜欢使用notepad++来写小规模的python脚本。喜欢这样快速的开发脚本,不过一旦遇到逻辑问题就抓瞎了。不知道该怎么debug 脚本,就只能一行一行的去分析什么地方出问题了。

今天发现python怎么debug了,在python的用户手册上,lib手册的第24章,使用python -m pdb test.py进行debug.

 

C:\Users\zouhong\Desktop>python -m pdb test.py
> c:\users\zouhong\desktop\test.py(1)()
-> a = 3
(Pdb) n
> c:\users\zouhong\desktop\test.py(2)()
-> b = 5
(Pdb) n
> c:\users\zouhong\desktop\test.py(4)()
-> print a + b
(Pdb) n
8
> c:\users\zouhong\desktop\test.py(6)()
-> print 'hello, world.'
(Pdb) n
hello, world.
--Return--
> c:\users\zouhong\desktop\test.py(6)()->None
-> print 'hello, world.'
(Pdb) n
--Return--
> (1)()->None
(Pdb)

你可能感兴趣的:(Python,windows)