Programming Python Lecture 2
Programming Python Lecture 2
Mr. Adeel-ur-Rehman
Scheme of Lecture
More on Functions
More on Lists
Comparing different Data Structures
Using Packages
Formatting I/O
Pickle Module
Documentation Strings
Keyword Arguments
If we have some functions with many
parameters and we want to specify only some
parameters, then we can give values for such
parameters by naming them.
i.e., this is called keyword arguments. We use
the name instead of the position which we
have been using all along.
This has two advantages:
Using the function is easier since we do not need
to worry about the order of the arguments.
We can give values to only those parameters which
we want, provided that the other parameters have
default argument values.
Lambda Forms
Python supports an interesting syntax
that lets you define one-line mini-
functions on the fly.
Borrowed from Lisp, these so-called
lambda functions can be used anywhere
a function is required.
Have a look at an example:
Documentation Strings
Python has a nifty feature called
documentation strings which are usually
referred to by their shorter name docstrings.
DocStrings are an important tool that we
should make use of since it helps to
document the program better.
We can even get back the docstring from a
function at runtime i.e. when the program is
running.
Packages
Packages are a way of structuring Python’s module namespace
by using “dotted module names”.
For example, the module name A.B designates a submodule
named ‘B’ in a package named ‘A’.
Just like the use of modules saves the authors of different
modules from having to worry about each other’s global
variable names, the use of dotted module names saves the
authors of multi-module packages like NumPy or the Python
Imaging Library from having to worry about each other’s
module names.
Suppose we want to design a collection of modules (a
“package”) for the uniform handling of sound files and sound
data.
There are many different sound file formats usually recognized
by their extensions. For example:
‘.wav’, ‘.aiff’, ‘.au’, so we may need to create and maintain a
growing collection of modules for the conversion between the
various file formats.
ASC, National Centre for Physics
Programming Python
Packages
There are also many different operations we might want
to perform on sound data:
Mixing
Adding echo
Applying an equalizer function
Creating an artificial stereo effect,
We will be writing a never-ending stream of modules to
perform these operations.
Here’s a possible structure for our package (expressed in
terms of a hierarchical filesystem):
Packages
Sound/ Top-level package
Formats/ Subpackage for file format conversions
wavread.py
wavwrite.py
aiffread.py
aiffwrite.py
auread.py
auwrite.py
...
Effects/ Subpackage for sound effects
echo.py
surround.py
reverse.py
...
Packages
Filters/ Subpackage for filters
equalizer.py
vocoder.py
karaoke.py
...
When importing the package, Python
searches through the directories on
sys.path looking for the package
subdirectory.
Packages
Users of the package can import individual
modules from the package, for example:
import Sound.Effects.echo
This loads the submodule Sound.Effects.echo.
It must be referenced with its full name.
Sound.Effects.echo.echofilter(input, output,
delay=0.7, atten=4)
An alternative way of importing the
submodule is:
from Sound.Effects import echo
Packages
This also loads the submodule echo, and makes it
available without its package prefix, so it can be used
as follows:
echo.echofilter(input, output, delay=0.7, atten=4)
Yet another variation is to import the desired function
or variable directly:
from Sound.Effects.echo import echofilter
Again, this loads the submodule echo, but this makes
its function echofilter() directly available:
echofilter(input, output, delay=0.7, atten=4)
Packages
Note that when using from package import item, the
item can be either a submodule (or subpackage) of
the package, or some other name defined in the
package, like a function, class or variable.
The import statement first tests whether the item is
defined in the package; if not, it assumes it is a
module and attempts to load it.
If it fails to find it, an ImportError exception is raised.
Contrarily, when using syntax like import
item.subitem.subsubitem, each item except for the
last must be a package; the last item can be a
module or a package but can’t be a class or function
or variable defined in the previous item.
ASC, National Centre for Physics
Programming Python
Intra-Package References
The submodules often need to refer to each other.
For example, the surround module might use the echo
module.
In fact, such references are so common that the
import statement first looks in the containing package
before looking in the standard module search path.
Thus, the surround module can simply use import echo
or from echo import echofilter.
If the imported module is not found in the current
package (the package of which the current module is a
submodule), the import statement looks for a top-level
module with the given name.
Intra-Package References
When packages are structured into
subpackages (as with the Sound package in
the example), there’s no shortcut to refer to
submodules of sibling packages - the full
name of the subpackage must be used.
For example, if the module
Sound.Filters.vocoder needs to use the echo
module in the Sound.Effects package, it can
use from Sound.Effects import echo.
pickle Module
Strings can easily be written to and read from a file.
Numbers take a bit more effort, since the read()
method only returns strings, which will have to be
passed to a function like string.atoi(), which takes a
string like ’123’ and returns its numeric value 123.
However, when we want to save more complex data
types like lists, dictionaries, or class instances, things
get a lot more complicated.
Rather than have users be constantly writing and
debugging code to save complicated data types,
Python provides a standard module called pickle.
pickle Module
This is an amazing module that can take almost any
Python object (even some forms of Python code!),
and convert it to a string representation; this process
is called pickling. Reconstructing the
object from the string representation is called
unpickling. Between pickling and unpickling, the
string representing the object may have been stored
in a file or data, or sent over a network connection to
some distant machine.
If you have an object ‘x’, and a file object ‘f’ that’s
been opened for writing, the simplest way to pickle
the object takes only one line of code:
pickle Module
pickle.dump(x, f)
To unpickle the object again, if ‘f’ is a file
object which has been opened for reading:
x = pickle.load(f)
(There are other variants of this, used when
pickling many objects or when we don’t want
to write the pickled data to a file.
pickle Module
pickle is the standard way to make Python
objects which can be stored and reused by
other programs or by a future invocation of
the same program; the technical term for this
is a persistent object.
Because pickle is so widely used, many
authors who write Python extensions take
care to ensure that new data types such as
matrices can be properly pickled and
unpickled.