04 August 2010

Python module concepts

One file of Python code is called a *module*. The file "binky.py" is also known as the module "binky".

There is another import form that looks like this: "from hashing import sha1, md5". That makes sha1() and md5() available by their short names.

No comments: