Я запускаю следующий код в Python Interactive Session и пытаюсь получить справку по методу load из json, но я не знаю, продолжать ли мои инструкции после (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)?
(Потому что я не могу набрать следующую инструкцию.)