如何在ipdb中打印p变量



我有一个名为p的变量,我想在ipdb中打印它的值。

p = 100
breakpoint()  # DEBUG

ipdb> help p
p expression
Print the value of the expression.
ipdb> p
*** SyntaxError: unexpected EOF while parsing

我不能去,因为p在ipdb中有一个别名。如何强制p打印其值?

您可以使用p p命令和print函数:

ipdb> p p
100
ipdb> print(p)
100

相关内容

  • 没有找到相关文章

最新更新