我有一个名为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