1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>4.3. Using type, str, dir, and Other Built-In Functions</title>
<link rel="stylesheet" href="../diveintopython.css" type="text/css">
<link rev="made" href="mailto:f8dy@diveintopython.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.52.2">
<meta name="keywords" content="Python, Dive Into Python, tutorial, object-oriented, programming, documentation, book, free">
<meta name="description" content="Python from novice to pro">
<link rel="home" href="../toc/index.html" title="Dive Into Python">
<link rel="up" href="index.html" title="Chapter 4. The Power Of Introspection">
<link rel="previous" href="optional_arguments.html" title="4.2. Using Optional and Named Arguments">
<link rel="next" href="getattr.html" title="4.4. Getting Object References With getattr">
</head>
<body>
<table id="Header" width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td id="breadcrumb" colspan="5" align="left" valign="top">You are here: <a href="../index.html">Home</a> > <a href="../toc/index.html">Dive Into Python</a> > <a href="index.html">The Power Of Introspection</a> > <span class="thispage">Using type, str, dir, and Other Built-In Functions</span></td>
<td id="navigation" align="right" valign="top"> <a href="optional_arguments.html" title="Prev: “Using Optional and Named Arguments”"><<</a> <a href="getattr.html" title="Next: “Getting Object References With getattr”">>></a></td>
</tr>
<tr>
<td colspan="3" id="logocontainer">
<h1 id="logo"><a href="../index.html" accesskey="1">Dive Into Python</a></h1>
<p id="tagline">Python from novice to pro</p>
</td>
<td colspan="3" align="right">
<form id="search" method="GET" action="http://www.google.com/custom">
<p><label for="q" accesskey="4">Find: </label><input type="text" id="q" name="q" size="20" maxlength="255" value=" "> <input type="submit" value="Search"><input type="hidden" name="cof" value="LW:752;L:http://diveintopython.org/images/diveintopython.png;LH:42;AH:left;GL:0;AWFID:3ced2bb1f7f1b212;"><input type="hidden" name="domains" value="diveintopython.org"><input type="hidden" name="sitesearch" value="diveintopython.org"></p>
</form>
</td>
</tr>
</table>
<!--#include virtual="/inc/ads" -->
<div class="section" lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title"><a name="apihelper.builtin"></a>4.3. Using <tt class="function">type</tt>, <tt class="function">str</tt>, <tt class="function">dir</tt>, and Other Built-In Functions
</h2>
</div>
</div>
<div></div>
</div>
<div class="toc">
<ul>
<li><span class="section"><a href="built_in_functions.html#d0e8510">4.3.1. The type Function</a></span></li>
<li><span class="section"><a href="built_in_functions.html#d0e8609">4.3.2. The str Function</a></span></li>
<li><span class="section"><a href="built_in_functions.html#d0e8958">4.3.3. Built-In Functions</a></span></li>
</ul>
</div>
<div class="abstract">
<p><span class="application">Python</span> has a small set of extremely useful built-in functions. All other functions are partitioned off into modules. This was
actually a conscious design decision, to keep the core language from getting bloated like other scripting languages (cough
cough, <span class="application">Visual Basic</span>).
</p>
</div>
<div class="section" lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a name="d0e8510"></a>4.3.1. The <tt class="function">type</tt> Function
</h3>
</div>
</div>
<div></div>
</div>
<p>The <tt class="function">type</tt> function returns the datatype of any arbitrary object. The possible types are listed in the <tt class="filename">types</tt> module. This is useful for helper functions that can handle several types of data.
</p>
<div class="example"><a name="apihelper.type.intro"></a><h3 class="title">Example 4.5. Introducing <tt class="function">type</tt></h3><pre class="screen"><tt class="prompt">>>> </tt><span class="userinput">type(1)</span> <a name="apihelper.builtin.1.1"></a><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12">
<span class="computeroutput"><type 'int'></span>
<tt class="prompt">>>> </tt><span class="userinput">li = []</span>
<tt class="prompt">>>> </tt><span class="userinput">type(li)</span> <a name="apihelper.builtin.1.2"></a><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12">
<span class="computeroutput"><type 'list'></span>
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>import</span> odbchelper</span>
<tt class="prompt">>>> </tt><span class="userinput">type(odbchelper)</span> <a name="apihelper.builtin.1.3"></a><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12">
<span class="computeroutput"><type 'module'></span>
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>import</span> types</span> <a name="apihelper.builtin.1.4"></a><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12">
<tt class="prompt">>>> </tt><span class="userinput">type(odbchelper) == types.ModuleType</span>
<span class="computeroutput">True</span></pre><div class="calloutlist">
<table border="0" summary="Callout list">
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.1.1"><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="function">type</tt> takes anything -- and I mean anything -- and returns its datatype. Integers, strings, lists, dictionaries, tuples, functions,
classes, modules, even types are acceptable.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.1.2"><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="function">type</tt> can take a variable and return its datatype.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.1.3"><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="function">type</tt> also works on modules.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.1.4"><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">You can use the constants in the <tt class="filename">types</tt> module to compare types of objects. This is what the <tt class="function">info</tt> function does, as you'll see shortly.
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="section" lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a name="d0e8609"></a>4.3.2. The <tt class="function">str</tt> Function
</h3>
</div>
</div>
<div></div>
</div>
<p>The <tt class="function">str</tt> coerces data into a string. Every datatype can be coerced into a string.
</p>
<div class="example"><a name="apihelper.str.intro"></a><h3 class="title">Example 4.6. Introducing <tt class="function">str</tt></h3><pre class="screen">
<tt class="prompt">>>> </tt><span class="userinput">str(1)</span> <a name="apihelper.builtin.2.1"></a><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12">
<span class="computeroutput">'1'</span>
<tt class="prompt">>>> </tt><span class="userinput">horsemen = [<span class='pystring'>'war'</span>, <span class='pystring'>'pestilence'</span>, <span class='pystring'>'famine'</span>]</span>
<tt class="prompt">>>> </tt><span class="userinput">horsemen</span>
<span class="computeroutput">['war', 'pestilence', 'famine']</span>
<tt class="prompt">>>> </tt><span class="userinput">horsemen.append('<span class="application">Powerbuilder</span>')</span>
<tt class="prompt">>>> </tt><span class="userinput">str(horsemen)</span> <a name="apihelper.builtin.2.2"></a><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12">
<span class="computeroutput">"['war', 'pestilence', 'famine', '<span class="application">Powerbuilder</span>']"</span>
<tt class="prompt">>>> </tt><span class="userinput">str(odbchelper)</span> <a name="apihelper.builtin.2.3"></a><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12">
<span class="computeroutput">"<module 'odbchelper' from 'c:\\docbook\\dip\\py\\odbchelper.py'>"</span>
<tt class="prompt">>>> </tt><span class="userinput">str(None)</span> <a name="apihelper.builtin.2.4"></a><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12">
<span class="computeroutput">'None'</span></pre><div class="calloutlist">
<table border="0" summary="Callout list">
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.2.1"><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">For simple datatypes like integers, you would expect <tt class="function">str</tt> to work, because almost every language has a function to convert an integer to a string.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.2.2"><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">However, <tt class="function">str</tt> works on any object of any type. Here it works on a list which you've constructed in bits and pieces.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.2.3"><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="function">str</tt> also works on modules. Note that the string representation of the module includes the pathname of the module on disk, so
yours will be different.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.2.4"><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">A subtle but important behavior of <tt class="function">str</tt> is that it works on <tt class="literal">None</tt>, the <span class="application">Python</span> null value. It returns the string <tt class="literal">'None'</tt>. You'll use this to your advantage in the <tt class="function">info</tt> function, as you'll see shortly.
</td>
</tr>
</table>
</div>
</div>
<p>At the heart of the <tt class="function">info</tt> function is the powerful <tt class="function">dir</tt> function. <tt class="function">dir</tt> returns a list of the attributes and methods of any object: modules, functions, strings, lists, dictionaries... pretty much
anything.
</p>
<div class="example"><a name="apihelper.dir.intro"></a><h3 class="title">Example 4.7. Introducing <tt class="function">dir</tt></h3><pre class="screen"><tt class="prompt">>>> </tt><span class="userinput">li = []</span>
<tt class="prompt">>>> </tt><span class="userinput">dir(li)</span> <a name="apihelper.builtin.3.1"></a><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12">
<span class="computeroutput">['append', 'count', 'extend', 'index', 'insert',
'pop', 'remove', 'reverse', 'sort']</span>
<tt class="prompt">>>> </tt><span class="userinput">d = {}</span>
<tt class="prompt">>>> </tt><span class="userinput">dir(d)</span> <a name="apihelper.builtin.3.2"></a><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12">
<span class="computeroutput">['clear', 'copy', 'get', 'has_key', 'items', 'keys', 'setdefault', 'update', 'values']</span>
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>import</span> odbchelper</span>
<tt class="prompt">>>> </tt><span class="userinput">dir(odbchelper)</span> <a name="apihelper.builtin.3.3"></a><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12">
<span class="computeroutput">['__builtins__', '__doc__', '__file__', '__name__', 'buildConnectionString']</span></pre><div class="calloutlist">
<table border="0" summary="Callout list">
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.3.1"><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="varname">li</tt> is a list, so <tt class="literal"><tt class="function">dir</tt>(<tt class="varname">li</tt>)</tt> returns a list of all the methods of a list. Note that the returned list contains the names of the methods as strings, not
the methods themselves.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.3.2"><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="varname">d</tt> is a dictionary, so <tt class="literal"><tt class="function">dir</tt>(<tt class="varname">d</tt>)</tt> returns a list of the names of dictionary methods. At least one of these, <a href="../native_data_types/mapping_lists.html#odbchelper.items" title="Example 3.25. The keys, values, and items Functions"><tt class="function">keys</tt></a>, should look familiar.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.3.3"><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">This is where it really gets interesting. <tt class="filename">odbchelper</tt> is a module, so <tt class="literal"><tt class="function">dir</tt>(<tt class="filename">odbchelper</tt>)</tt> returns a list of all kinds of stuff defined in the module, including built-in attributes, like <a href="../getting_to_know_python/testing_modules.html#odbchelper.ifnametrick"><tt class="literal">__name__</tt></a>, <a href="../getting_to_know_python/everything_is_an_object.html#odbchelper.import" title="Example 2.3. Accessing the buildConnectionString Function's doc string"><tt class="literal">__doc__</tt></a>, and whatever other attributes and methods you define. In this case, <tt class="filename">odbchelper</tt> has only one user-defined method, the <tt class="function">buildConnectionString</tt> function described in <a href="../getting_to_know_python/index.html">Chapter 2</a>.
</td>
</tr>
</table>
</div>
</div>
<p>Finally, the <tt class="function">callable</tt> function takes any object and returns <tt class="constant">True</tt> if the object can be called, or <tt class="constant">False</tt> otherwise. Callable objects include functions, class methods, even classes themselves. (More on classes in the next chapter.)
</p>
<div class="example"><a name="apihelper.builtin.callable"></a><h3 class="title">Example 4.8. Introducing <tt class="function">callable</tt></h3><pre class="screen">
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>import</span> string</span>
<tt class="prompt">>>> </tt><span class="userinput">string.punctuation</span> <a name="apihelper.builtin.4.1"></a><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12">
<span class="computeroutput">'!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'</span>
<tt class="prompt">>>> </tt><span class="userinput">string.join</span> <a name="apihelper.builtin.4.2"></a><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12">
<span class="computeroutput"><function join at 00C55A7C></span>
<tt class="prompt">>>> </tt><span class="userinput">callable(string.punctuation)</span> <a name="apihelper.builtin.4.3"></a><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12">
<span class="computeroutput">False</span>
<tt class="prompt">>>> </tt><span class="userinput">callable(string.join)</span> <a name="apihelper.builtin.4.4"></a><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12">
<span class="computeroutput">True</span>
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>print</span> string.join.__doc__</span> <a name="apihelper.builtin.4.5"></a><img src="../images/callouts/5.png" alt="5" border="0" width="12" height="12">
<span class="computeroutput">join(list [,sep]) -> string
Return a string composed of the words in list, with
intervening occurrences of sep. The default separator is a
single space.
(joinfields and join are synonymous)</span></pre><div class="calloutlist">
<table border="0" summary="Callout list">
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.4.1"><img src="../images/callouts/1.png" alt="1" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">The functions in the <tt class="filename">string</tt> module are deprecated (although many people still use the <tt class="function">join</tt> function), but the module contains a lot of useful constants like this <tt class="varname">string.punctuation</tt>, which contains all the standard punctuation characters.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.4.2"><img src="../images/callouts/2.png" alt="2" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><a href="../native_data_types/joining_lists.html" title="3.7. Joining Lists and Splitting Strings"><tt class="function">string.join</tt></a> is a function that joins a list of strings.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.4.3"><img src="../images/callouts/3.png" alt="3" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="varname">string.punctuation</tt> is not callable; it is a string. (A string does have callable methods, but the string itself is not callable.)
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.4.4"><img src="../images/callouts/4.png" alt="4" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left"><tt class="function">string.join</tt> is callable; it's a function that takes two arguments.
</td>
</tr>
<tr>
<td width="12" valign="top" align="left"><a href="#apihelper.builtin.4.5"><img src="../images/callouts/5.png" alt="5" border="0" width="12" height="12"></a>
</td>
<td valign="top" align="left">Any callable object may have a <tt class="literal">doc string</tt>. By using the <tt class="function">callable</tt> function on each of an object's attributes, you can determine which attributes you care about (methods, functions, classes)
and which you want to ignore (constants and so on) without knowing anything about the object ahead of time.
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="section" lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a name="d0e8958"></a>4.3.3. Built-In Functions
</h3>
</div>
</div>
<div></div>
</div>
<p><tt class="function">type</tt>, <tt class="function">str</tt>, <tt class="function">dir</tt>, and all the rest of <span class="application">Python</span>'s built-in functions are grouped into a special module called <tt class="filename">__builtin__</tt>. (That's two underscores before and after.) If it helps, you can think of <span class="application">Python</span> automatically executing <tt class="literal">from __builtin__ import *</tt> on startup, which imports all the “<span class="quote">built-in</span>” functions into the namespace so you can use them directly.
</p>
<p>The advantage of thinking like this is that you can access all the built-in functions and attributes as a group by getting
information about the <tt class="filename">__builtin__</tt> module. And guess what, <span class="application">Python</span> has a function called <tt class="function">info</tt>. Try it yourself and skim through the list now. We'll dive into some of the more important functions later. (Some of the
built-in error classes, like <a href="../native_data_types/tuples.html#odbchelper.tuplemethods" title="Example 3.16. Tuples Have No Methods"><tt class="errorcode">AttributeError</tt></a>, should already look familiar.)
</p>
<div class="example"><a name="apihelper.builtin.list"></a><h3 class="title">Example 4.9. Built-in Attributes and Functions</h3><pre class="screen"><tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>from</span> apihelper <span class='pykeyword'>import</span> info</span>
<tt class="prompt">>>> </tt><span class="userinput"><span class='pykeyword'>import</span> __builtin__</span>
<tt class="prompt">>>> </tt><span class="userinput">info(__builtin__, 20)</span>
<span class="computeroutput">ArithmeticError Base class for arithmetic errors.
AssertionError Assertion failed.
AttributeError Attribute not found.
EOFError Read beyond end of file.
EnvironmentError Base class for I/O related errors.
Exception Common base class for all exceptions.
FloatingPointError Floating point operation failed.
IOError I/O operation failed.
[...snip...]</span></pre></div><a name="tip.manuals"></a><table class="note" border="0" summary="">
<tr>
<td rowspan="2" align="center" valign="top" width="1%"><img src="../images/note.png" alt="Note" title="" width="24" height="24"></td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" width="99%"><span class="application">Python</span> comes with excellent reference manuals, which you should peruse thoroughly to learn all the modules <span class="application">Python</span> has to offer. But unlike most languages, where you would find yourself referring back to the manuals or man pages to remind
yourself how to use these modules, <span class="application">Python</span> is largely self-documenting.
</td>
</tr>
</table>
<div class="furtherreading">
<h3>Further Reading on Built-In Functions</h3>
<ul>
<li><a href="http://www.python.org/doc/current/lib/"><i class="citetitle"><span class="application">Python</span> Library Reference</i></a> documents <a href="http://www.python.org/doc/current/lib/built-in-funcs.html">all the built-in functions</a> and <a href="http://www.python.org/doc/current/lib/module-exceptions.html">all the built-in exceptions</a>.
</li>
</ul>
</div>
</div>
</div>
<table class="Footer" width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td width="35%" align="left"><br><a class="NavigationArrow" href="optional_arguments.html"><< Using Optional and Named Arguments</a></td>
<td width="30%" align="center"><br> <span class="divider">|</span> <a href="index.html#apihelper.divein" title="4.1. Diving In">1</a> <span class="divider">|</span> <a href="optional_arguments.html" title="4.2. Using Optional and Named Arguments">2</a> <span class="divider">|</span> <span class="thispage">3</span> <span class="divider">|</span> <a href="getattr.html" title="4.4. Getting Object References With getattr">4</a> <span class="divider">|</span> <a href="filtering_lists.html" title="4.5. Filtering Lists">5</a> <span class="divider">|</span> <a href="and_or.html" title="4.6. The Peculiar Nature of and and or">6</a> <span class="divider">|</span> <a href="lambda_functions.html" title="4.7. Using lambda Functions">7</a> <span class="divider">|</span> <a href="all_together.html" title="4.8. Putting It All Together">8</a> <span class="divider">|</span> <a href="summary.html" title="4.9. Summary">9</a> <span class="divider">|</span>
</td>
<td width="35%" align="right"><br><a class="NavigationArrow" href="getattr.html">Getting Object References With getattr >></a></td>
</tr>
<tr>
<td colspan="3"><br></td>
</tr>
</table>
<div class="Footer">
<p class="copyright">Copyright © 2000, 2001, 2002, 2003, 2004 <a href="mailto:mark@diveintopython.org">Mark Pilgrim</a></p>
</div>
</body>
</html>
|