Computer Science

What is the significance of Modules ?

Python Libraries

5 Likes

Answer

The significance of Python modules is as follows:

  1. Modules reduce complexity of programs to some degree.
  2. Modules create a number of well-defined, documented boundaries within the program.
  3. Contents of modules can be reused in other programs, without having to rewrite or recreate them.

Answered By

3 Likes


Related Questions