2

ipython 我可以发出以下命令,它给了我帮助:

In [1]: help(["foo", "bar", "baz"])

class list(object)
 |  list() -> new empty list
 |  list(iterable) -> new list initialized from iterable's items
 |
 |  Methods defined here:
 |
 |  __add__(...)
 |      x.__add__(y) <==> x+y
 |
 |  __contains__(...)
 |      x.__contains__(y) <==> y in x
...

但是当我在里面做同样的事情时,ipdb我得到一个错误:

ipdb> help(["foo", "bar", "baz"])
*** No help on (["foo", "bar", "baz"])

为什么?

4

1 回答 1

2

help是 pdb 中的一个特殊命令。您需要显式调用p help(obj)而不是help(obj). 如果您只是help在 pdb 中单独调用,您可以看到差异。

于 2016-05-02T14:19:11.433 回答