#interviewQuestions : 0013
What are python modules?
What are python modules?
Python modules are files containing Python code.
A module can define functions, classes and variables. A module can also include runnable code. Grouping related code into a module makes the code easier to understand and use.