python简单debug方法

2023-01-31 05:01:17 python 简单 方法

简介

本文主要介绍通过pdb lib 实现在python中debug

代码示例

import pdb

pdb.set_trace()

for i in range(10):
    print(i)

运行中

> /home/mingfeng/Python_debug.py(6)<module>()
-> print(i)
(Pdb) n   //n为可用命令
0

debug时可用命令

  • s => 进入下一个可执行函数后停止
  • n => 进行到下一行停止
  • c => 执行到最后停止
  • l => 当前行上下文代码展示


查看原文:https://www.huuinn.com/arcHives/505
更多技术干货:风匀坊
关注公众号:风匀坊

相关文章