Computer Science
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
Python Libraries
1 Like
Answer
module
Reason — A Python module is a file (.py file) containing variables, class definitions, statements and functions related to a particular task and can be used in other programs.
Answered By
1 Like
Related Questions
Which is the correct command to load just the tempc method from a module called usable ?
- import usable, tempc
- import tempc from usable
- from usable import tempc
- import tempc
What is the extension of Python library modules ?
- .mod
- .lib
- .code
- .py
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