Computer Science

The help <module> statement displays …………… from a module.

  1. constants
  2. functions
  3. classes
  4. docstrings

Python Libraries

4 Likes

Answer

docstrings

Reason — Docstrings of a module are displayed as documentation, when help <module> statement is issued.

Answered By

2 Likes


Related Questions