pdb
「pdb」的意思
abbr. 私有程序化购买 (Programmatic Direct Buy)
n.物理数据库
「pdb」的用法
pdb程序调试工具 - 开发者
「pdb」的例句
Use pdb to debug your Python code.
使用pdb调试你的Python代码。
Pdb can help you find and fix errors in your code.
Pdb可以帮助你找到并修复代码中的错误。
Start pdb by typing 'python -m pdb your_script.py'.
通过输入'python -m pdb your_script.py'启动pdb。
Use 'n' to execute the next line of code.
使用'n'执行下一行代码。
's' steps into a function call.
's'进入函数调用。
'c' continues execution until the next breakpoint.
'c'继续执行直到下一个断点。
'p' prints the value of an expression.
'p'打印表达式的值。
'l' lists source code around the current line.
'l'列出当前行周围的源代码。
'q' quits pdb and returns to the Python interpreter.
'q'退出pdb并返回到Python解释器。
'h' shows a list of available commands.
'h'显示可用命令的列表。