pdb(Python Debugger)是python自带的库,用于调试程序。 一、常用命令如下: 二、案例代码 import pdb #需要导入的库def test(aa,bb):print('函数内打印aa:',aa)pri……