Computer Science
The help <module> statement displays …………… from a module.
- constants
- functions
- classes
- 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
The collection of modules and packages that together cater to a specific type of applications or requirements, is called ……………
- module
- library
- classes
- documentation
An independent triple quoted string given inside a module, containing documentation related information is a ……………
- Documentation string
- docstring
- dstring
- stringdoc
Which command(s) modifies the current namespace with the imported object name ?
- import <module>
- import <module1>, <module2>
- from <module> import <object>
- from <module> import *
Which command(s) creates a separate namespace for each of the imported module ?
- import <module>
- import <module1>, <module2>
- from <module> import <object>
- from <module> import *