Computer Science
An independent triple quoted string given inside a module, containing documentation related information is a ……………
- Documentation string
- docstring
- dstring
- stringdoc
Python Libraries
3 Likes
Answer
docstring
Reason — The docstrings are triple quoted strings in a Python module/program which are displayed as documentation when help (<module-or-program-name>) command is issued.
Answered By
3 Likes
Related Questions
A .py file containing constants/variables, classes, functions etc. related to a particular task and can be used in other programs is called
- module
- library
- classes
- documentation
The collection of modules and packages that together cater to a specific type of applications or requirements, is called ……………
- module
- library
- classes
- documentation
The help <module> statement displays …………… from a module.
- constants
- functions
- classes
- docstrings
Which command(s) modifies the current namespace with the imported object name ?
- import <module>
- import <module1>, <module2>
- from <module> import <object>
- from <module> import *