What is a Python module ? What is its significance ? .
Answers
Answered by
28
module allows you to logically organize your Python code. Grouping related code into a module makes the code easier to understand and use. A module is a Python object with arbitrarily named attributes that you can bind and reference.
Simply, a module is a file consisting of Python code. A module can define functions, classes and variables. A module can also include runnable code.
Similar questions
Science,
7 months ago
Math,
7 months ago
Physics,
7 months ago
Computer Science,
1 year ago
Science,
1 year ago