Computer Science
An independent triple quoted string given inside a module, containing documentation related information is a ……………
- Documentation string
- docstring
- dstring
- stringdoc
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 *