What are modules?

Modules are functions made by other programmers that can be downloaded, imported to your own code and could be used to your own advantage.

In order to use this module. We will have to import them in our python code.

To import them, we use following command: import <module-name>

We will be learning about the modules in Python which makes our lives much easier while coding.