A
module is a file containing Python definitions and statements intended for use in other Python programs. There are many Python modules that come with Python as part of the
standard library. We have already used one of these briefly, the
math
module. Recall that once we import the module, we can use things that are defined inside.
The
Python Documentationhttp://docs.python.org/py3k/
site for Python version 3 (the home page is shown below) is an extremely useful reference for all aspects of Python. The site contains a listing of all the standard modules that are available with Python (see
Global Module Indexhttp://docs.python.org/py3k/py-modindex.html
). You will also see that there is a
Language Referencehttp://docs.python.org/py3k/reference/index.html
and a
Tutorialhttp://docs.python.org/py3k/tutorial/index.html
(mostly aimed at people who are already familiar with another programming language), as well as installation instructions, how-tos, and frequently asked questions. We encourage you to become familiar with this site and to use it often.
If you have not done so already, take a look at the Global Module Index. Here you will see an alphabetical listing of all the modules that are available as part of the standard library. Find the math module.
You can see that all the math functionality that we have talked about is there. However, there is so much more. Take some time to read through and familiarize yourself with some of the other things that math can do.
Note 9.1.1. Note: Python modules and limitations with activecode.
Throughout the chapters of this book, activecode windows allow you to practice the Python that you are learning. We mentioned in the first chapter that programming is normally done using some type of development environment and that the activecode used here was strictly to help us learn. It is not the way we write production programs.
To that end, it is necessary to mention that many of the modules available in standard Python will
not work in the activecode environment. In fact, only math and random have been completely ported at this point. If you wish to explore any additional modules, you will need to also explore using a more robust development environment.