在 Python 交互式会话中的 运行 help() 之后继续

Continue after running help() in Python interactive session

我 运行 在 Python Interactive Session 中使用以下代码,并尝试从 json 获得方法 'load' 的帮助,但我不知道如何继续我的(END) 之后的说明,

这是我的代码:

import json
help(json.load)

这是我得到的:

...
 result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders.  If ``object_hook``
    is also defined, the ``object_pairs_hook`` takes priority.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.
(END)

你能帮忙看看(END)之后如何继续吗? (因为我无法输入下一条指令。)

q 获得 quit。

我找不到这个 documented, but here it is in the source code of pydoc's pager

注意: (END) 文本暗示 pydoc 可能会委派给另一个程序 less,以便在您的平台上进行分页。但是,相同的快捷键应该可以工作。