Fred Drake | 1f8449a | 1998-01-09 05:36:43 +0000 | [diff] [blame] | 1 | \documentclass[twoside]{report} |
| 2 | \usepackage{myformat} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 4 | % Things to do: |
| 5 | % Add a section on file I/O |
| 6 | % Write a chapter entitled ``Some Useful Modules'' |
| 7 | % --regex, math+cmath |
| 8 | % Should really move the Python startup file info to an appendix |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 9 | |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 10 | \title{Python Tutorial} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 12 | \input{boilerplate} |
Guido van Rossum | 83eb962 | 1993-11-23 16:28:45 +0000 | [diff] [blame] | 13 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 14 | \begin{document} |
| 15 | |
| 16 | \pagenumbering{roman} |
| 17 | |
| 18 | \maketitle |
| 19 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 20 | \input{copyright} |
| 21 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 22 | \begin{abstract} |
| 23 | |
| 24 | \noindent |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 25 | Python is an easy to learn, powerful programming language. It has |
| 26 | efficient high-level data structures and a simple but effective |
| 27 | approach to object-oriented programming. Python's elegant syntax and |
| 28 | dynamic typing, together with its interpreted nature, make it an ideal |
| 29 | language for scripting and rapid application development in many areas |
| 30 | on most platforms. |
| 31 | |
| 32 | The Python interpreter and the extensive standard library are freely |
| 33 | available in source or binary form for all major platforms from the |
| 34 | Python web site, \file{http://www.python.org}, and can be freely |
| 35 | distributed. The same site also contains distributions of and |
| 36 | pointers to many free third party Python modules, programs and tools, |
| 37 | and additional documentation. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 38 | |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 39 | The Python interpreter is easily extended with new functions and data |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 40 | types implemented in C or C++ (or other languages callable from C). |
| 41 | Python is also suitable as an extension language for customizable |
| 42 | applications. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 43 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 44 | This tutorial introduces the reader informally to the basic concepts |
| 45 | and features of the Python language and system. It helps to have a |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 46 | Python interpreter handy for hands-on experience, but all examples are |
| 47 | self-contained, so the tutorial can be read off-line as well. |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 49 | For a description of standard objects and modules, see the |
| 50 | \emph{Python Library Reference} document. The \emph{Python Reference |
| 51 | Manual} gives a more formal definition of the language. To write |
| 52 | extensions in C or C++, read the \emph{Extending and Embedding} and |
| 53 | \emph{Python/C API} manuals. There are also several books covering |
| 54 | Python in depth. |
| 55 | |
| 56 | This tutorial does not attempt to be comprehensive and cover every |
| 57 | single feature, or even every commonly used feature. Instead, it |
| 58 | introduces many of Python's most noteworthy features, and will give |
| 59 | you a good idea of the language's flavor and style. After reading it, |
| 60 | you will be able to read and write Python modules and programs, and |
| 61 | you will be ready to learn more about the various Python library |
| 62 | modules described in the \emph{Python Library Reference}. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 63 | |
| 64 | \end{abstract} |
| 65 | |
Fred Drake | 1f8449a | 1998-01-09 05:36:43 +0000 | [diff] [blame] | 66 | \mytableofcontents |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 67 | |
| 68 | \pagenumbering{arabic} |
| 69 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 70 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 71 | \chapter{Whetting Your Appetite} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 72 | |
Guido van Rossum | 3a26dd8 | 1996-10-24 22:12:48 +0000 | [diff] [blame] | 73 | \section{Introduction} |
| 74 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 75 | If you ever wrote a large shell script, you probably know this |
| 76 | feeling: you'd love to add yet another feature, but it's already so |
| 77 | slow, and so big, and so complicated; or the feature involves a system |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 78 | call or other function that is only accessible from C \ldots Usually |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 79 | the problem at hand isn't serious enough to warrant rewriting the |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 80 | script in C; perhaps the problem requires variable-length strings or |
| 81 | other data types (like sorted lists of file names) that are easy in |
| 82 | the shell but lots of work to implement in C, or perhaps you're not |
| 83 | sufficiently familiar with C. |
| 84 | |
| 85 | Another situation: perhaps you have to work with several C libraries, |
| 86 | and the usual C write/compile/test/re-compile cycle is too slow. You |
| 87 | need to develop software more quickly. Possibly perhaps you've |
| 88 | written a program that could use an extension language, and you don't |
| 89 | want to design a language, write and debug an interpreter for it, then |
| 90 | tie it into your application. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 91 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 92 | In such cases, Python may be just the language for you. Python is |
| 93 | simple to use, but it is a real programming language, offering much |
| 94 | more structure and support for large programs than the shell has. On |
| 95 | the other hand, it also offers much more error checking than C, and, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 96 | being a \emph{very-high-level language}, it has high-level data types |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 97 | built in, such as flexible arrays and dictionaries that would cost you |
| 98 | days to implement efficiently in C. Because of its more general data |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 99 | types Python is applicable to a much larger problem domain than |
| 100 | \emph{Awk} or even \emph{Perl}, yet many things are at least as easy |
| 101 | in Python as in those languages. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 102 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 103 | Python allows you to split up your program in modules that can be |
| 104 | reused in other Python programs. It comes with a large collection of |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 105 | standard modules that you can use as the basis of your programs --- or |
| 106 | as examples to start learning to program in Python. There are also |
| 107 | built-in modules that provide things like file I/O, system calls, |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 108 | sockets, and even interfaces to GUI toolkits like Tk. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 109 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 110 | Python is an interpreted language, which can save you considerable time |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 111 | during program development because no compilation and linking is |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 112 | necessary. The interpreter can be used interactively, which makes it |
| 113 | easy to experiment with features of the language, to write throw-away |
| 114 | programs, or to test functions during bottom-up program development. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 115 | It is also a handy desk calculator. |
| 116 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 117 | Python allows writing very compact and readable programs. Programs |
| 118 | written in Python are typically much shorter than equivalent C |
| 119 | programs, for several reasons: |
| 120 | \begin{itemize} |
| 121 | \item |
| 122 | the high-level data types allow you to express complex operations in a |
| 123 | single statement; |
| 124 | \item |
| 125 | statement grouping is done by indentation instead of begin/end |
| 126 | brackets; |
| 127 | \item |
| 128 | no variable or argument declarations are necessary. |
| 129 | \end{itemize} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 130 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 131 | Python is \emph{extensible}: if you know how to program in C it is easy |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 132 | to add a new built-in function or module to the interpreter, either to |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 133 | perform critical operations at maximum speed, or to link Python |
| 134 | programs to libraries that may only be available in binary form (such |
| 135 | as a vendor-specific graphics library). Once you are really hooked, |
| 136 | you can link the Python interpreter into an application written in C |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 137 | and use it as an extension or command language for that application. |
| 138 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 139 | By the way, the language is named after the BBC show ``Monty Python's |
| 140 | Flying Circus'' and has nothing to do with nasty reptiles. Making |
| 141 | references to Monty Python skits in documentation is not only allowed, |
Guido van Rossum | dccc298 | 1997-12-30 04:40:25 +0000 | [diff] [blame] | 142 | it is encouraged! |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 143 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 144 | \section{Where From Here} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 145 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 146 | Now that you are all excited about Python, you'll want to examine it |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 147 | in some more detail. Since the best way to learn a language is |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 148 | using it, you are invited here to do so. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 149 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 150 | In the next chapter, the mechanics of using the interpreter are |
| 151 | explained. This is rather mundane information, but essential for |
| 152 | trying out the examples shown later. |
| 153 | |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 154 | The rest of the tutorial introduces various features of the Python |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 155 | language and system though examples, beginning with simple |
| 156 | expressions, statements and data types, through functions and modules, |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 157 | and finally touching upon advanced concepts like exceptions |
| 158 | and user-defined classes. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 159 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 160 | \chapter{Using the Python Interpreter} |
| 161 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 162 | \section{Invoking the Interpreter} |
| 163 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 164 | The Python interpreter is usually installed as \file{/usr/local/bin/python} |
| 165 | on those machines where it is available; putting \file{/usr/local/bin} in |
Fred Drake | 6dc2aae | 1996-12-13 21:56:03 +0000 | [diff] [blame] | 166 | your \UNIX{} shell's search path makes it possible to start it by |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 167 | typing the command |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 168 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 169 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 170 | python |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 171 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 172 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 173 | to the shell. Since the choice of the directory where the interpreter |
| 174 | lives is an installation option, other places are possible; check with |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 175 | your local Python guru or system administrator. (E.g., |
| 176 | \file{/usr/local/python} is a popular alternative location.) |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 177 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 178 | Typing an EOF character (Control-D on \UNIX{}, Control-Z or F6 on DOS |
| 179 | or Windows) at the primary prompt causes the interpreter to exit with |
| 180 | a zero exit status. If that doesn't work, you can exit the |
| 181 | interpreter by typing the following commands: \code{import sys ; |
| 182 | sys.exit()}. |
| 183 | |
| 184 | The interpreter's line-editing features usually aren't very |
| 185 | sophisticated. On Unix, whoever installed the interpreter may have |
| 186 | enabled support for the GNU readline library, which adds more |
| 187 | elaborate interactive editing and history features. Perhaps the |
| 188 | quickest check to see whether command line editing is supported is |
| 189 | typing Control-P to the first Python prompt you get. If it beeps, you |
| 190 | have command line editing; see Appendix A for an introduction to the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 191 | keys. If nothing appears to happen, or if \code{\^P} is echoed, |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 192 | command line editing isn't available; you'll only be able to use |
| 193 | backspace to remove characters from the current line. |
| 194 | |
Fred Drake | 6dc2aae | 1996-12-13 21:56:03 +0000 | [diff] [blame] | 195 | The interpreter operates somewhat like the \UNIX{} shell: when called |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 196 | with standard input connected to a tty device, it reads and executes |
| 197 | commands interactively; when called with a file name argument or with |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 198 | a file as standard input, it reads and executes a \emph{script} from |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 199 | that file. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 200 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 201 | A third way of starting the interpreter is |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 202 | \samp{python -c command [arg] ...}, which |
| 203 | executes the statement(s) in \code{command}, analogous to the shell's |
| 204 | \code{-c} option. Since Python statements often contain spaces or other |
| 205 | characters that are special to the shell, it is best to quote |
| 206 | \code{command} in its entirety with double quotes. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 207 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 208 | Note that there is a difference between \samp{python file} and |
| 209 | \samp{python <file}. In the latter case, input requests from the |
| 210 | program, such as calls to \code{input()} and \code{raw_input()}, are |
| 211 | satisfied from \emph{file}. Since this file has already been read |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 212 | until the end by the parser before the program starts executing, the |
| 213 | program will encounter EOF immediately. In the former case (which is |
| 214 | usually what you want) they are satisfied from whatever file or device |
| 215 | is connected to standard input of the Python interpreter. |
| 216 | |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 217 | When a script file is used, it is sometimes useful to be able to run |
| 218 | the script and enter interactive mode afterwards. This can be done by |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 219 | passing \code{-i} before the script. (This does not work if the script |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 220 | is read from standard input, for the same reason as explained in the |
| 221 | previous paragraph.) |
| 222 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 223 | \subsection{Argument Passing} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 224 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 225 | When known to the interpreter, the script name and additional |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 226 | arguments thereafter are passed to the script in the variable |
| 227 | \code{sys.argv}, which is a list of strings. Its length is at least |
| 228 | one; when no script and no arguments are given, \code{sys.argv[0]} is |
| 229 | an empty string. When the script name is given as \code{'-'} (meaning |
| 230 | standard input), \code{sys.argv[0]} is set to \code{'-'}. When \code{-c |
| 231 | command} is used, \code{sys.argv[0]} is set to \code{'-c'}. Options |
| 232 | found after \code{-c command} are not consumed by the Python |
| 233 | interpreter's option processing but left in \code{sys.argv} for the |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 234 | command to handle. |
| 235 | |
| 236 | \subsection{Interactive Mode} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 237 | |
Guido van Rossum | dd01080 | 1991-06-07 14:31:11 +0000 | [diff] [blame] | 238 | When commands are read from a tty, the interpreter is said to be in |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 239 | \emph{interactive mode}. In this mode it prompts for the next command |
| 240 | with the \emph{primary prompt}, usually three greater-than signs |
| 241 | (\code{>>>}); for continuation lines it prompts with the |
| 242 | \emph{secondary prompt}, |
| 243 | by default three dots (\code{...}). |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 244 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 245 | The interpreter prints a welcome message stating its version number |
| 246 | and a copyright notice before printing the first prompt, e.g.: |
| 247 | |
| 248 | \bcode\begin{verbatim} |
| 249 | python |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 250 | Python 1.5b1 (#1, Dec 3 1997, 00:02:06) [GCC 2.7.2.2] on sunos5 |
| 251 | Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 252 | >>> |
| 253 | \end{verbatim}\ecode |
| 254 | |
| 255 | \section{The Interpreter and its Environment} |
| 256 | |
| 257 | \subsection{Error Handling} |
| 258 | |
| 259 | When an error occurs, the interpreter prints an error |
| 260 | message and a stack trace. In interactive mode, it then returns to |
| 261 | the primary prompt; when input came from a file, it exits with a |
| 262 | nonzero exit status after printing |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 263 | the stack trace. (Exceptions handled by an \code{except} clause in a |
| 264 | \code{try} statement are not errors in this context.) Some errors are |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 265 | unconditionally fatal and cause an exit with a nonzero exit; this |
| 266 | applies to internal inconsistencies and some cases of running out of |
| 267 | memory. All error messages are written to the standard error stream; |
| 268 | normal output from the executed commands is written to standard |
| 269 | output. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 270 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 271 | Typing the interrupt character (usually Control-C or DEL) to the |
| 272 | primary or secondary prompt cancels the input and returns to the |
| 273 | primary prompt.% |
| 274 | \footnote{ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 275 | A problem with the GNU Readline package may prevent this. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 276 | } |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 277 | Typing an interrupt while a command is executing raises the |
| 278 | \code{KeyboardInterrupt} exception, which may be handled by a |
| 279 | \code{try} statement. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 280 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 281 | \subsection{Executable Python scripts} |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 282 | |
Fred Drake | 6dc2aae | 1996-12-13 21:56:03 +0000 | [diff] [blame] | 283 | On BSD'ish \UNIX{} systems, Python scripts can be made directly |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 284 | executable, like shell scripts, by putting the line |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 285 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 286 | \bcode\begin{verbatim} |
Fred Drake | 9e63faa | 1997-10-15 14:37:24 +0000 | [diff] [blame] | 287 | #! /usr/bin/env python |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 288 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 289 | % |
Fred Drake | 9e63faa | 1997-10-15 14:37:24 +0000 | [diff] [blame] | 290 | (assuming that the interpreter is on the user's PATH) at the beginning |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 291 | of the script and giving the file an executable mode. The \code{\#!} |
Fred Drake | 9e63faa | 1997-10-15 14:37:24 +0000 | [diff] [blame] | 292 | must be the first two characters of the file. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 293 | |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 294 | \subsection{The Interactive Startup File} |
| 295 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 296 | XXX This should probably be dumped in an appendix, since most people |
| 297 | don't use Python interactively in non-trivial ways. |
| 298 | |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 299 | When you use Python interactively, it is frequently handy to have some |
| 300 | standard commands executed every time the interpreter is started. You |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 301 | can do this by setting an environment variable named |
| 302 | \code{PYTHONSTARTUP} to the name of a file containing your start-up |
| 303 | commands. This is similar to the \file{.profile} feature of the \UNIX{} |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 304 | shells. |
| 305 | |
| 306 | This file is only read in interactive sessions, not when Python reads |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 307 | commands from a script, and not when \file{/dev/tty} is given as the |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 308 | explicit source of commands (which otherwise behaves like an |
| 309 | interactive session). It is executed in the same name space where |
| 310 | interactive commands are executed, so that objects that it defines or |
| 311 | imports can be used without qualification in the interactive session. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 312 | You can also change the prompts \code{sys.ps1} and \code{sys.ps2} in |
Guido van Rossum | 7b3c8a1 | 1992-09-08 09:20:13 +0000 | [diff] [blame] | 313 | this file. |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 314 | |
| 315 | If you want to read an additional start-up file from the current |
| 316 | directory, you can program this in the global start-up file, e.g. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 317 | \code{execfile('.pythonrc')}. If you want to use the startup file |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 318 | in a script, you must write this explicitly in the script, e.g. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 319 | \code{import os;} \code{execfile(os.environ['PYTHONSTARTUP'])}. |
Guido van Rossum | 9a4e3fc | 1992-09-03 21:27:55 +0000 | [diff] [blame] | 320 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 321 | \chapter{An Informal Introduction to Python} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 322 | |
| 323 | In the following examples, input and output are distinguished by the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 324 | presence or absence of prompts (\code{>>>} and \code{...}): to repeat |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 325 | the example, you must type everything after the prompt, when the |
| 326 | prompt appears; lines that do not begin with a prompt are output from |
| 327 | the interpreter.% |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 328 | %\footnote{ |
| 329 | % I'd prefer to use different fonts to distinguish input |
| 330 | % from output, but the amount of LaTeX hacking that would require |
| 331 | % is currently beyond my ability. |
| 332 | %} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 333 | Note that a secondary prompt on a line by itself in an example means |
| 334 | you must type a blank line; this is used to end a multi-line command. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 335 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 336 | \section{Using Python as a Calculator} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 337 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 338 | Let's try some simple Python commands. Start the interpreter and wait |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 339 | for the primary prompt, \code{>>>}. (It shouldn't take long.) |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 340 | |
| 341 | \subsection{Numbers} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 342 | |
| 343 | The interpreter acts as a simple calculator: you can type an |
| 344 | expression at it and it will write the value. Expression syntax is |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 345 | straightforward: the operators \code{+}, \code{-}, \code{*} and \code{/} |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 346 | work just like in most other languages (e.g., Pascal or C); parentheses |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 347 | can be used for grouping. For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 348 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 349 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 350 | >>> 2+2 |
| 351 | 4 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 352 | >>> # This is a comment |
| 353 | ... 2+2 |
| 354 | 4 |
| 355 | >>> 2+2 # and a comment on the same line as code |
| 356 | 4 |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 357 | >>> (50-5*6)/4 |
| 358 | 5 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 359 | >>> # Integer division returns the floor: |
| 360 | ... 7/3 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 361 | 2 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 362 | >>> 7/-3 |
| 363 | -3 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 364 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 365 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 366 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 367 | Like in C, the equal sign (\code{=}) is used to assign a value to a |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 368 | variable. The value of an assignment is not written: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 369 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 370 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 371 | >>> width = 20 |
| 372 | >>> height = 5*9 |
| 373 | >>> width * height |
| 374 | 900 |
| 375 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 376 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 377 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 378 | A value can be assigned to several variables simultaneously: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 379 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 380 | \bcode\begin{verbatim} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 381 | >>> x = y = z = 0 # Zero x, y and z |
| 382 | >>> x |
| 383 | 0 |
| 384 | >>> y |
| 385 | 0 |
| 386 | >>> z |
| 387 | 0 |
| 388 | >>> |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 389 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 390 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 391 | There is full support for floating point; operators with mixed type |
| 392 | operands convert the integer operand to floating point: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 393 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 394 | \bcode\begin{verbatim} |
| 395 | >>> 4 * 2.5 / 3.3 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 396 | 3.0303030303 |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 397 | >>> 7.0 / 2 |
| 398 | 3.5 |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 399 | \end{verbatim}\ecode |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 400 | % |
| 401 | Complex numbers are also supported; imaginary numbers are written with |
| 402 | a suffix of \code{'j'} or \code{'J'}. Complex numbers with a nonzero |
| 403 | real component are written as \code{(\var{real}+\var{imag}j)}, or can |
| 404 | be created with the \code{complex(\var{real}, \var{imag})} function. |
| 405 | |
| 406 | \bcode\begin{verbatim} |
| 407 | >>> 1j * 1J |
| 408 | (-1+0j) |
| 409 | >>> 1j * complex(0,1) |
| 410 | (-1+0j) |
| 411 | >>> 3+1j*3 |
| 412 | (3+3j) |
| 413 | >>> (3+1j)*3 |
| 414 | (9+3j) |
| 415 | >>> (1+2j)/(1+1j) |
| 416 | (1.5+0.5j) |
| 417 | \end{verbatim}\ecode |
| 418 | % |
| 419 | Complex numbers are always represented as two floating point numbers, |
| 420 | the real and imaginary part. To extract these parts from a complex |
| 421 | number \code{z}, use \code{z.real} and \code{z.imag}. |
| 422 | |
| 423 | \bcode\begin{verbatim} |
| 424 | >>> a=1.5+0.5j |
| 425 | >>> a.real |
| 426 | 1.5 |
| 427 | >>> a.imag |
| 428 | 0.5 |
| 429 | \end{verbatim}\ecode |
| 430 | % |
| 431 | The conversion functions to floating point and integer |
| 432 | (\code{float()}, \code{int()} and \code{long()}) don't work for |
| 433 | complex numbers --- there is no one correct way to convert a complex |
| 434 | number to a real number. Use \code{abs(z)} to get its magnitude (as a |
| 435 | float) or \code{z.real} to get its real part. |
| 436 | |
| 437 | \bcode\begin{verbatim} |
| 438 | >>> a=1.5+0.5j |
| 439 | >>> float(a) |
| 440 | Traceback (innermost last): |
| 441 | File "<stdin>", line 1, in ? |
| 442 | TypeError: can't convert complex to float; use e.g. abs(z) |
| 443 | >>> a.real |
| 444 | 1.5 |
| 445 | >>> abs(a) |
| 446 | 1.58113883008 |
| 447 | \end{verbatim}\ecode |
| 448 | % |
| 449 | In interactive mode, the last printed expression is assigned to the |
| 450 | variable \code{_}. This means that when you are using Python as a |
| 451 | desk calculator, it is somewhat easier to continue calculations, for |
| 452 | example: |
| 453 | |
| 454 | \begin{verbatim} |
| 455 | >>> tax = 17.5 / 100 |
| 456 | >>> price = 3.50 |
| 457 | >>> price * tax |
| 458 | 0.6125 |
| 459 | >>> price + _ |
| 460 | 4.1125 |
| 461 | >>> round(_, 2) |
| 462 | 4.11 |
| 463 | \end{verbatim} |
| 464 | |
| 465 | This variable should be treated as read-only by the user. Don't |
| 466 | explicitly assign a value to it --- you would create an independent |
| 467 | local variable with the same name masking the built-in variable with |
| 468 | its magic behavior. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 469 | |
| 470 | \subsection{Strings} |
| 471 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 472 | Besides numbers, Python can also manipulate strings, which can be |
| 473 | expressed in several ways. They can be enclosed in single quotes or |
| 474 | double quotes: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 475 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 476 | \bcode\begin{verbatim} |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 477 | >>> 'spam eggs' |
| 478 | 'spam eggs' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 479 | >>> 'doesn\'t' |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 480 | "doesn't" |
| 481 | >>> "doesn't" |
| 482 | "doesn't" |
| 483 | >>> '"Yes," he said.' |
| 484 | '"Yes," he said.' |
| 485 | >>> "\"Yes,\" he said." |
| 486 | '"Yes," he said.' |
| 487 | >>> '"Isn\'t," she said.' |
| 488 | '"Isn\'t," she said.' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 489 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 490 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 491 | % |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 492 | String literals can span multiple lines in several ways. Newlines can be escaped with backslashes, e.g. |
| 493 | |
| 494 | \begin{verbatim} |
| 495 | hello = "This is a rather long string containing\n\ |
| 496 | several lines of text just as you would do in C.\n\ |
| 497 | Note that whitespace at the beginning of the line is\ |
| 498 | significant.\n" |
| 499 | print hello |
| 500 | \end{verbatim} |
| 501 | |
| 502 | which would print the following: |
| 503 | \begin{verbatim} |
| 504 | This is a rather long string containing |
| 505 | several lines of text just as you would do in C. |
| 506 | Note that whitespace at the beginning of the line is significant. |
| 507 | \end{verbatim} |
| 508 | |
| 509 | Or, strings can be surrounded in a pair of matching triple-quotes: |
| 510 | \code{"""} or \code {'''}. End of lines do not need to be escaped |
| 511 | when using triple-quotes, but they will be included in the string. |
| 512 | |
| 513 | \begin{verbatim} |
| 514 | print """ |
| 515 | Usage: thingy [OPTIONS] |
| 516 | -h Display this usage message |
| 517 | -H hostname Hostname to connect to |
| 518 | """ |
| 519 | \end{verbatim} |
| 520 | |
| 521 | produces the following output: |
| 522 | |
| 523 | \bcode\begin{verbatim} |
| 524 | Usage: thingy [OPTIONS] |
| 525 | -h Display this usage message |
| 526 | -H hostname Hostname to connect to |
| 527 | \end{verbatim}\ecode |
| 528 | % |
| 529 | The interpreter prints the result of string operations in the same way |
| 530 | as they are typed for input: inside quotes, and with quotes and other |
| 531 | funny characters escaped by backslashes, to show the precise |
| 532 | value. The string is enclosed in double quotes if the string contains |
| 533 | a single quote and no double quotes, else it's enclosed in single |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 534 | quotes. (The \code{print} statement, described later, can be used to |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 535 | write strings without quotes or escapes.) |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 536 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 537 | Strings can be concatenated (glued together) with the \code{+} |
| 538 | operator, and repeated with \code{*}: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 539 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 540 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 541 | >>> word = 'Help' + 'A' |
| 542 | >>> word |
| 543 | 'HelpA' |
| 544 | >>> '<' + word*5 + '>' |
| 545 | '<HelpAHelpAHelpAHelpAHelpA>' |
| 546 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 547 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 548 | % |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 549 | Two string literals next to each other are automatically concatenated; |
| 550 | the first line above could also have been written \code{word = 'Help' |
| 551 | 'A'}; this only works with two literals, not with arbitrary string expressions. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 552 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 553 | Strings can be subscripted (indexed); like in C, the first character |
| 554 | of a string has subscript (index) 0. There is no separate character |
| 555 | type; a character is simply a string of size one. Like in Icon, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 556 | substrings can be specified with the \emph{slice} notation: two indices |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 557 | separated by a colon. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 558 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 559 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 560 | >>> word[4] |
| 561 | 'A' |
| 562 | >>> word[0:2] |
| 563 | 'He' |
| 564 | >>> word[2:4] |
| 565 | 'lp' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 566 | >>> |
| 567 | \end{verbatim}\ecode |
| 568 | % |
| 569 | Slice indices have useful defaults; an omitted first index defaults to |
| 570 | zero, an omitted second index defaults to the size of the string being |
| 571 | sliced. |
| 572 | |
| 573 | \bcode\begin{verbatim} |
| 574 | >>> word[:2] # The first two characters |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 575 | 'He' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 576 | >>> word[2:] # All but the first two characters |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 577 | 'lpA' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 578 | >>> |
| 579 | \end{verbatim}\ecode |
| 580 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 581 | Here's a useful invariant of slice operations: \code{s[:i] + s[i:]} |
| 582 | equals \code{s}. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 583 | |
| 584 | \bcode\begin{verbatim} |
| 585 | >>> word[:2] + word[2:] |
| 586 | 'HelpA' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 587 | >>> word[:3] + word[3:] |
| 588 | 'HelpA' |
| 589 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 590 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 591 | % |
| 592 | Degenerate slice indices are handled gracefully: an index that is too |
| 593 | large is replaced by the string size, an upper bound smaller than the |
| 594 | lower bound returns an empty string. |
| 595 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 596 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 597 | >>> word[1:100] |
| 598 | 'elpA' |
| 599 | >>> word[10:] |
| 600 | '' |
| 601 | >>> word[2:1] |
| 602 | '' |
| 603 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 604 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 605 | % |
| 606 | Indices may be negative numbers, to start counting from the right. |
| 607 | For example: |
| 608 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 609 | \bcode\begin{verbatim} |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 610 | >>> word[-1] # The last character |
| 611 | 'A' |
| 612 | >>> word[-2] # The last-but-one character |
| 613 | 'p' |
| 614 | >>> word[-2:] # The last two characters |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 615 | 'pA' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 616 | >>> word[:-2] # All but the last two characters |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 617 | 'Hel' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 618 | >>> |
| 619 | \end{verbatim}\ecode |
| 620 | % |
| 621 | But note that -0 is really the same as 0, so it does not count from |
| 622 | the right! |
| 623 | |
| 624 | \bcode\begin{verbatim} |
| 625 | >>> word[-0] # (since -0 equals 0) |
| 626 | 'H' |
| 627 | >>> |
| 628 | \end{verbatim}\ecode |
| 629 | % |
| 630 | Out-of-range negative slice indices are truncated, but don't try this |
| 631 | for single-element (non-slice) indices: |
| 632 | |
| 633 | \bcode\begin{verbatim} |
| 634 | >>> word[-100:] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 635 | 'HelpA' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 636 | >>> word[-10] # error |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 637 | Traceback (innermost last): |
| 638 | File "<stdin>", line 1 |
| 639 | IndexError: string index out of range |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 640 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 641 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 642 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 643 | The best way to remember how slices work is to think of the indices as |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 644 | pointing \emph{between} characters, with the left edge of the first |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 645 | character numbered 0. Then the right edge of the last character of a |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 646 | string of \var{n} characters has index \var{n}, for example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 647 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 648 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 649 | +---+---+---+---+---+ |
| 650 | | H | e | l | p | A | |
| 651 | +---+---+---+---+---+ |
| 652 | 0 1 2 3 4 5 |
| 653 | -5 -4 -3 -2 -1 |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 654 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 655 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 656 | The first row of numbers gives the position of the indices 0...5 in |
| 657 | the string; the second row gives the corresponding negative indices. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 658 | The slice from \var{i} to \var{j} consists of all characters between |
| 659 | the edges labeled \var{i} and \var{j}, respectively. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 660 | |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 661 | For nonnegative indices, the length of a slice is the difference of |
| 662 | the indices, if both are within bounds, e.g., the length of |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 663 | \code{word[1:3]} is 2. |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 664 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 665 | The built-in function \code{len()} returns the length of a string: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 666 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 667 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 668 | >>> s = 'supercalifragilisticexpialidocious' |
| 669 | >>> len(s) |
| 670 | 34 |
| 671 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 672 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 673 | |
| 674 | \subsection{Lists} |
| 675 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 676 | Python knows a number of \emph{compound} data types, used to group |
| 677 | together other values. The most versatile is the \emph{list}, which |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 678 | can be written as a list of comma-separated values (items) between |
| 679 | square brackets. List items need not all have the same type. |
| 680 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 681 | \bcode\begin{verbatim} |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 682 | >>> a = ['spam', 'eggs', 100, 1234] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 683 | >>> a |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 684 | ['spam', 'eggs', 100, 1234] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 685 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 686 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 687 | % |
| 688 | Like string indices, list indices start at 0, and lists can be sliced, |
| 689 | concatenated and so on: |
| 690 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 691 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 692 | >>> a[0] |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 693 | 'spam' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 694 | >>> a[3] |
| 695 | 1234 |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 696 | >>> a[-2] |
| 697 | 100 |
| 698 | >>> a[1:-1] |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 699 | ['eggs', 100] |
| 700 | >>> a[:2] + ['bacon', 2*2] |
| 701 | ['spam', 'eggs', 'bacon', 4] |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 702 | >>> 3*a[:3] + ['Boe!'] |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 703 | ['spam', 'eggs', 100, 'spam', 'eggs', 100, 'spam', 'eggs', 100, 'Boe!'] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 704 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 705 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 706 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 707 | Unlike strings, which are \emph{immutable}, it is possible to change |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 708 | individual elements of a list: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 709 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 710 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 711 | >>> a |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 712 | ['spam', 'eggs', 100, 1234] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 713 | >>> a[2] = a[2] + 23 |
| 714 | >>> a |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 715 | ['spam', 'eggs', 123, 1234] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 716 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 717 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 718 | % |
| 719 | Assignment to slices is also possible, and this can even change the size |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 720 | of the list: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 721 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 722 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 723 | >>> # Replace some items: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 724 | ... a[0:2] = [1, 12] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 725 | >>> a |
| 726 | [1, 12, 123, 1234] |
| 727 | >>> # Remove some: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 728 | ... a[0:2] = [] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 729 | >>> a |
| 730 | [123, 1234] |
| 731 | >>> # Insert some: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 732 | ... a[1:1] = ['bletch', 'xyzzy'] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 733 | >>> a |
| 734 | [123, 'bletch', 'xyzzy', 1234] |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 735 | >>> a[:0] = a # Insert (a copy of) itself at the beginning |
| 736 | >>> a |
| 737 | [123, 'bletch', 'xyzzy', 1234, 123, 'bletch', 'xyzzy', 1234] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 738 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 739 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 740 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 741 | The built-in function \code{len()} also applies to lists: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 742 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 743 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 744 | >>> len(a) |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 745 | 8 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 746 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 747 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 748 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 749 | It is possible to nest lists (create lists containing other lists), |
| 750 | for example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 751 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 752 | \bcode\begin{verbatim} |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 753 | >>> q = [2, 3] |
| 754 | >>> p = [1, q, 4] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 755 | >>> len(p) |
| 756 | 3 |
| 757 | >>> p[1] |
| 758 | [2, 3] |
| 759 | >>> p[1][0] |
| 760 | 2 |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 761 | >>> p[1].append('xtra') # See section 5.1 |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 762 | >>> p |
| 763 | [1, [2, 3, 'xtra'], 4] |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 764 | >>> q |
| 765 | [2, 3, 'xtra'] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 766 | >>> |
| 767 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 768 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 769 | Note that in the last example, \code{p[1]} and \code{q} really refer to |
| 770 | the same object! We'll come back to \emph{object semantics} later. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 771 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 772 | \section{First Steps Towards Programming} |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 773 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 774 | Of course, we can use Python for more complicated tasks than adding |
| 775 | two and two together. For instance, we can write an initial |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 776 | subsequence of the \emph{Fibonacci} series as follows: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 777 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 778 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 779 | >>> # Fibonacci series: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 780 | ... # the sum of two elements defines the next |
| 781 | ... a, b = 0, 1 |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 782 | >>> while b < 10: |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 783 | ... print b |
| 784 | ... a, b = b, a+b |
| 785 | ... |
| 786 | 1 |
| 787 | 1 |
| 788 | 2 |
| 789 | 3 |
| 790 | 5 |
| 791 | 8 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 792 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 793 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 794 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 795 | This example introduces several new features. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 796 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 797 | \begin{itemize} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 798 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 799 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 800 | The first line contains a \emph{multiple assignment}: the variables |
| 801 | \code{a} and \code{b} simultaneously get the new values 0 and 1. On the |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 802 | last line this is used again, demonstrating that the expressions on |
| 803 | the right-hand side are all evaluated first before any of the |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 804 | assignments take place. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 805 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 806 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 807 | The \code{while} loop executes as long as the condition (here: \code{b < |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 808 | 10}) remains true. In Python, like in C, any non-zero integer value is |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 809 | true; zero is false. The condition may also be a string or list value, |
| 810 | in fact any sequence; anything with a non-zero length is true, empty |
| 811 | sequences are false. The test used in the example is a simple |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 812 | comparison. The standard comparison operators are written the same as |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 813 | in C: \code{<}, \code{>}, \code{==}, \code{<=}, \code{>=} and \code{!=}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 814 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 815 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 816 | The \emph{body} of the loop is \emph{indented}: indentation is Python's |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 817 | way of grouping statements. Python does not (yet!) provide an |
| 818 | intelligent input line editing facility, so you have to type a tab or |
| 819 | space(s) for each indented line. In practice you will prepare more |
| 820 | complicated input for Python with a text editor; most text editors have |
| 821 | an auto-indent facility. When a compound statement is entered |
| 822 | interactively, it must be followed by a blank line to indicate |
| 823 | completion (since the parser cannot guess when you have typed the last |
| 824 | line). |
| 825 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 826 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 827 | The \code{print} statement writes the value of the expression(s) it is |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 828 | given. It differs from just writing the expression you want to write |
| 829 | (as we did earlier in the calculator examples) in the way it handles |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 830 | multiple expressions and strings. Strings are printed without quotes, |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 831 | and a space is inserted between items, so you can format things nicely, |
| 832 | like this: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 833 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 834 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 835 | >>> i = 256*256 |
| 836 | >>> print 'The value of i is', i |
| 837 | The value of i is 65536 |
| 838 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 839 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 840 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 841 | A trailing comma avoids the newline after the output: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 842 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 843 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 844 | >>> a, b = 0, 1 |
| 845 | >>> while b < 1000: |
| 846 | ... print b, |
| 847 | ... a, b = b, a+b |
| 848 | ... |
| 849 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 |
| 850 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 851 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 852 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 853 | Note that the interpreter inserts a newline before it prints the next |
| 854 | prompt if the last line was not completed. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 855 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 856 | \end{itemize} |
| 857 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 858 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 859 | \chapter{More Control Flow Tools} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 860 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 861 | Besides the \code{while} statement just introduced, Python knows the |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 862 | usual control flow statements known from other languages, with some |
| 863 | twists. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 864 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 865 | \section{If Statements} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 866 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 867 | Perhaps the most well-known statement type is the \code{if} statement. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 868 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 869 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 870 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 871 | >>> if x < 0: |
| 872 | ... x = 0 |
| 873 | ... print 'Negative changed to zero' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 874 | ... elif x == 0: |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 875 | ... print 'Zero' |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 876 | ... elif x == 1: |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 877 | ... print 'Single' |
| 878 | ... else: |
| 879 | ... print 'More' |
| 880 | ... |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 881 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 882 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 883 | There can be zero or more \code{elif} parts, and the \code{else} part is |
| 884 | optional. The keyword `\code{elif}' is short for `\code{else if}', and is |
| 885 | useful to avoid excessive indentation. An \code{if...elif...elif...} |
| 886 | sequence is a substitute for the \emph{switch} or \emph{case} statements |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 887 | found in other languages. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 888 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 889 | \section{For Statements} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 890 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 891 | The \code{for} statement in Python differs a bit from what you may be |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 892 | used to in C or Pascal. Rather than always iterating over an |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 893 | arithmetic progression of numbers (like in Pascal), or leaving the user |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 894 | completely free in the iteration test and step (as C), Python's |
| 895 | \code{for} statement iterates over the items of any sequence (e.g., a |
| 896 | list or a string), in the order that they appear in the sequence. For |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 897 | example (no pun intended): |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 898 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 899 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 900 | >>> # Measure some strings: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 901 | ... a = ['cat', 'window', 'defenestrate'] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 902 | >>> for x in a: |
| 903 | ... print x, len(x) |
| 904 | ... |
| 905 | cat 3 |
| 906 | window 6 |
| 907 | defenestrate 12 |
| 908 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 909 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 910 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 911 | It is not safe to modify the sequence being iterated over in the loop |
| 912 | (this can only happen for mutable sequence types, i.e., lists). If |
| 913 | you need to modify the list you are iterating over, e.g., duplicate |
| 914 | selected items, you must iterate over a copy. The slice notation |
| 915 | makes this particularly convenient: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 916 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 917 | \bcode\begin{verbatim} |
| 918 | >>> for x in a[:]: # make a slice copy of the entire list |
| 919 | ... if len(x) > 6: a.insert(0, x) |
| 920 | ... |
| 921 | >>> a |
| 922 | ['defenestrate', 'cat', 'window', 'defenestrate'] |
| 923 | >>> |
| 924 | \end{verbatim}\ecode |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 925 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 926 | \section{The \sectcode{range()} Function} |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 927 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 928 | If you do need to iterate over a sequence of numbers, the built-in |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 929 | function \code{range()} comes in handy. It generates lists containing |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 930 | arithmetic progressions, e.g.: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 931 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 932 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 933 | >>> range(10) |
| 934 | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] |
| 935 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 936 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 937 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 938 | The given end point is never part of the generated list; \code{range(10)} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 939 | generates a list of 10 values, exactly the legal indices for items of a |
| 940 | sequence of length 10. It is possible to let the range start at another |
| 941 | number, or to specify a different increment (even negative): |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 942 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 943 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 944 | >>> range(5, 10) |
| 945 | [5, 6, 7, 8, 9] |
| 946 | >>> range(0, 10, 3) |
| 947 | [0, 3, 6, 9] |
| 948 | >>> range(-10, -100, -30) |
| 949 | [-10, -40, -70] |
| 950 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 951 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 952 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 953 | To iterate over the indices of a sequence, combine \code{range()} and |
| 954 | \code{len()} as follows: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 955 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 956 | \bcode\begin{verbatim} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 957 | >>> a = ['Mary', 'had', 'a', 'little', 'lamb'] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 958 | >>> for i in range(len(a)): |
| 959 | ... print i, a[i] |
| 960 | ... |
| 961 | 0 Mary |
| 962 | 1 had |
| 963 | 2 a |
| 964 | 3 little |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 965 | 4 lamb |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 966 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 967 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 968 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 969 | \section{Break and Continue Statements, and Else Clauses on Loops} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 970 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 971 | The \code{break} statement, like in C, breaks out of the smallest |
| 972 | enclosing \code{for} or \code{while} loop. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 973 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 974 | The \code{continue} statement, also borrowed from C, continues with the |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 975 | next iteration of the loop. |
| 976 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 977 | Loop statements may have an \code{else} clause; it is executed when the |
| 978 | loop terminates through exhaustion of the list (with \code{for}) or when |
| 979 | the condition becomes false (with \code{while}), but not when the loop is |
| 980 | terminated by a \code{break} statement. This is exemplified by the |
Guido van Rossum | cfb45e4 | 1994-11-10 23:04:43 +0000 | [diff] [blame] | 981 | following loop, which searches for prime numbers: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 982 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 983 | \bcode\begin{verbatim} |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 984 | >>> for n in range(2, 10): |
| 985 | ... for x in range(2, n): |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 986 | ... if n % x == 0: |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 987 | ... print n, 'equals', x, '*', n/x |
| 988 | ... break |
| 989 | ... else: |
| 990 | ... print n, 'is a prime number' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 991 | ... |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 992 | 2 is a prime number |
| 993 | 3 is a prime number |
| 994 | 4 equals 2 * 2 |
| 995 | 5 is a prime number |
| 996 | 6 equals 2 * 3 |
| 997 | 7 is a prime number |
| 998 | 8 equals 2 * 4 |
| 999 | 9 equals 3 * 3 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1000 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1001 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1002 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1003 | \section{Pass Statements} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1004 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1005 | The \code{pass} statement does nothing. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1006 | It can be used when a statement is required syntactically but the |
| 1007 | program requires no action. |
| 1008 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1009 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1010 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1011 | >>> while 1: |
| 1012 | ... pass # Busy-wait for keyboard interrupt |
| 1013 | ... |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1014 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1015 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1016 | \section{Defining Functions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1017 | |
| 1018 | We can create a function that writes the Fibonacci series to an |
| 1019 | arbitrary boundary: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1020 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1021 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1022 | >>> def fib(n): # write Fibonacci series up to n |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1023 | ... "Print a Fibonacci series up to n" |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1024 | ... a, b = 0, 1 |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 1025 | ... while b < n: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1026 | ... print b, |
| 1027 | ... a, b = b, a+b |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1028 | ... |
| 1029 | >>> # Now call the function we just defined: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1030 | ... fib(2000) |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1031 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 |
| 1032 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1033 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1034 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1035 | The keyword \code{def} introduces a function \emph{definition}. It must |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1036 | be followed by the function name and the parenthesized list of formal |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1037 | parameters. The statements that form the body of the function start |
| 1038 | at the next line, indented by a tab stop. The first statement of the |
| 1039 | function body can optionally be a string literal; this string literal |
| 1040 | is the function's documentation string, or \dfn{docstring}. There are |
| 1041 | tools which use docstrings to automatically produce printed |
| 1042 | documentation, or to let the user interactively browse through code; |
| 1043 | it's good practice to include docstrings in code that you write, so |
| 1044 | try to make a habit of it. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1045 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1046 | The \emph{execution} of a function introduces a new symbol table used |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1047 | for the local variables of the function. More precisely, all variable |
| 1048 | assignments in a function store the value in the local symbol table; |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1049 | whereas variable references first look in the local symbol table, then |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1050 | in the global symbol table, and then in the table of built-in names. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1051 | Thus, |
Guido van Rossum | cfb45e4 | 1994-11-10 23:04:43 +0000 | [diff] [blame] | 1052 | global variables cannot be directly assigned a value within a |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1053 | function (unless named in a \code{global} statement), although |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1054 | they may be referenced. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1055 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1056 | The actual parameters (arguments) to a function call are introduced in |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1057 | the local symbol table of the called function when it is called; thus, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1058 | arguments are passed using \emph{call by value}.% |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1059 | \footnote{ |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1060 | Actually, \emph{call by object reference} would be a better |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1061 | description, since if a mutable object is passed, the caller |
| 1062 | will see any changes the callee makes to it (e.g., items |
| 1063 | inserted into a list). |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1064 | } |
| 1065 | When a function calls another function, a new local symbol table is |
| 1066 | created for that call. |
| 1067 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1068 | A function definition introduces the function name in the |
| 1069 | current |
| 1070 | symbol table. The value |
| 1071 | of the function name |
| 1072 | has a type that is recognized by the interpreter as a user-defined |
| 1073 | function. This value can be assigned to another name which can then |
| 1074 | also be used as a function. This serves as a general renaming |
| 1075 | mechanism: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1076 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1077 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1078 | >>> fib |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 1079 | <function object at 10042ed0> |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1080 | >>> f = fib |
| 1081 | >>> f(100) |
| 1082 | 1 1 2 3 5 8 13 21 34 55 89 |
| 1083 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1084 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1085 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1086 | You might object that \code{fib} is not a function but a procedure. In |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1087 | Python, like in C, procedures are just functions that don't return a |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1088 | value. In fact, technically speaking, procedures do return a value, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1089 | albeit a rather boring one. This value is called \code{None} (it's a |
| 1090 | built-in name). Writing the value \code{None} is normally suppressed by |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1091 | the interpreter if it would be the only value written. You can see it |
| 1092 | if you really want to: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1093 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1094 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1095 | >>> print fib(0) |
| 1096 | None |
| 1097 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1098 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1099 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1100 | It is simple to write a function that returns a list of the numbers of |
| 1101 | the Fibonacci series, instead of printing it: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1102 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1103 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1104 | >>> def fib2(n): # return Fibonacci series up to n |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1105 | ... "Return a list containing the Fibonacci series up to n" |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 1106 | ... result = [] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1107 | ... a, b = 0, 1 |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 1108 | ... while b < n: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1109 | ... result.append(b) # see below |
| 1110 | ... a, b = b, a+b |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 1111 | ... return result |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1112 | ... |
| 1113 | >>> f100 = fib2(100) # call it |
| 1114 | >>> f100 # write the result |
| 1115 | [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] |
| 1116 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1117 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1118 | % |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 1119 | This example, as usual, demonstrates some new Python features: |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1120 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1121 | \begin{itemize} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1122 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1123 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1124 | The \code{return} statement returns with a value from a function. |
| 1125 | \code{return} without an expression argument is used to return from |
| 1126 | the middle of a procedure (falling off the end also returns from a |
| 1127 | procedure), in which case the \code{None} value is returned. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1128 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1129 | \item |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1130 | The statement \code{result.append(b)} calls a \emph{method} of the list |
| 1131 | object \code{result}. A method is a function that `belongs' to an |
| 1132 | object and is named \code{obj.methodname}, where \code{obj} is some |
| 1133 | object (this may be an expression), and \code{methodname} is the name |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1134 | of a method that is defined by the object's type. Different types |
| 1135 | define different methods. Methods of different types may have the |
| 1136 | same name without causing ambiguity. (It is possible to define your |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1137 | own object types and methods, using \emph{classes}, as discussed later |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1138 | in this tutorial.) |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1139 | The method \code{append} shown in the example, is defined for |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1140 | list objects; it adds a new element at the end of the list. In this |
| 1141 | example |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1142 | it is equivalent to \code{result = result + [b]}, but more efficient. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1143 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1144 | \end{itemize} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1145 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1146 | \section{More on Defining Functions} |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 1147 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1148 | It is also possible to define functions with a variable number of |
| 1149 | arguments. There are three forms, which can be combined. |
| 1150 | |
| 1151 | \subsection{Default Argument Values} |
| 1152 | |
| 1153 | The most useful form is to specify a default value for one or more |
| 1154 | arguments. This creates a function that can be called with fewer |
| 1155 | arguments than it is defined, e.g. |
| 1156 | |
| 1157 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1158 | def ask_ok(prompt, retries=4, complaint='Yes or no, please!'): |
| 1159 | while 1: |
| 1160 | ok = raw_input(prompt) |
| 1161 | if ok in ('y', 'ye', 'yes'): return 1 |
| 1162 | if ok in ('n', 'no', 'nop', 'nope'): return 0 |
| 1163 | retries = retries - 1 |
| 1164 | if retries < 0: raise IOError, 'refusenik user' |
| 1165 | print complaint |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1166 | \end{verbatim} |
| 1167 | |
| 1168 | This function can be called either like this: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1169 | \code{ask_ok('Do you really want to quit?')} or like this: |
| 1170 | \code{ask_ok('OK to overwrite the file?', 2)}. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1171 | |
| 1172 | The default values are evaluated at the point of function definition |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1173 | in the \emph{defining} scope, so that e.g. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1174 | |
| 1175 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1176 | i = 5 |
| 1177 | def f(arg = i): print arg |
| 1178 | i = 6 |
| 1179 | f() |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1180 | \end{verbatim} |
| 1181 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1182 | will print \code{5}. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1183 | |
| 1184 | \subsection{Keyword Arguments} |
| 1185 | |
| 1186 | Functions can also be called using |
| 1187 | keyword arguments of the form \code{\var{keyword} = \var{value}}. For |
| 1188 | instance, the following function: |
| 1189 | |
| 1190 | \begin{verbatim} |
| 1191 | def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): |
| 1192 | print "-- This parrot wouldn't", action, |
| 1193 | print "if you put", voltage, "Volts through it." |
| 1194 | print "-- Lovely plumage, the", type |
| 1195 | print "-- It's", state, "!" |
| 1196 | \end{verbatim} |
| 1197 | |
| 1198 | could be called in any of the following ways: |
| 1199 | |
| 1200 | \begin{verbatim} |
| 1201 | parrot(1000) |
| 1202 | parrot(action = 'VOOOOOM', voltage = 1000000) |
| 1203 | parrot('a thousand', state = 'pushing up the daisies') |
| 1204 | parrot('a million', 'bereft of life', 'jump') |
| 1205 | \end{verbatim} |
| 1206 | |
| 1207 | but the following calls would all be invalid: |
| 1208 | |
| 1209 | \begin{verbatim} |
| 1210 | parrot() # required argument missing |
| 1211 | parrot(voltage=5.0, 'dead') # non-keyword argument following keyword |
| 1212 | parrot(110, voltage=220) # duplicate value for argument |
| 1213 | parrot(actor='John Cleese') # unknown keyword |
| 1214 | \end{verbatim} |
| 1215 | |
| 1216 | In general, an argument list must have any positional arguments |
| 1217 | followed by any keyword arguments, where the keywords must be chosen |
| 1218 | from the formal parameter names. It's not important whether a formal |
| 1219 | parameter has a default value or not. No argument must receive a |
| 1220 | value more than once --- formal parameter names corresponding to |
| 1221 | positional arguments cannot be used as keywords in the same calls. |
| 1222 | |
| 1223 | When a final formal parameter of the form \code{**\var{name}} is |
| 1224 | present, it receives a dictionary containing all keyword arguments |
| 1225 | whose keyword doesn't correspond to a formal parameter. This may be |
| 1226 | combined with a formal parameter of the form \code{*\var{name}} |
| 1227 | (described in the next subsection) which receives a tuple containing |
| 1228 | the positional arguments beyond the formal parameter list. |
| 1229 | (\code{*\var{name}} must occur before \code{**\var{name}}.) For |
| 1230 | example, if we define a function like this: |
| 1231 | |
| 1232 | \begin{verbatim} |
| 1233 | def cheeseshop(kind, *arguments, **keywords): |
| 1234 | print "-- Do you have any", kind, '?' |
| 1235 | print "-- I'm sorry, we're all out of", kind |
| 1236 | for arg in arguments: print arg |
| 1237 | print '-'*40 |
| 1238 | for kw in keywords.keys(): print kw, ':', keywords[kw] |
| 1239 | \end{verbatim} |
| 1240 | |
| 1241 | It could be called like this: |
| 1242 | |
| 1243 | \begin{verbatim} |
| 1244 | cheeseshop('Limburger', "It's very runny, sir.", |
| 1245 | "It's really very, VERY runny, sir.", |
| 1246 | client='John Cleese', |
| 1247 | shopkeeper='Michael Palin', |
| 1248 | sketch='Cheese Shop Sketch') |
| 1249 | \end{verbatim} |
| 1250 | |
| 1251 | and of course it would print: |
| 1252 | |
| 1253 | \begin{verbatim} |
| 1254 | -- Do you have any Limburger ? |
| 1255 | -- I'm sorry, we're all out of Limburger |
| 1256 | It's very runny, sir. |
| 1257 | It's really very, VERY runny, sir. |
| 1258 | ---------------------------------------- |
| 1259 | client : John Cleese |
| 1260 | shopkeeper : Michael Palin |
| 1261 | sketch : Cheese Shop Sketch |
| 1262 | \end{verbatim} |
| 1263 | |
| 1264 | \subsection{Arbitrary Argument Lists} |
| 1265 | |
| 1266 | Finally, the least frequently used option is to specify that a |
| 1267 | function can be called with an arbitrary number of arguments. These |
| 1268 | arguments will be wrapped up in a tuple. Before the variable number |
| 1269 | of arguments, zero or more normal arguments may occur. |
| 1270 | |
| 1271 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1272 | def fprintf(file, format, *args): |
| 1273 | file.write(format % args) |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1274 | \end{verbatim} |
| 1275 | |
| 1276 | \chapter{Data Structures} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1277 | |
| 1278 | This chapter describes some things you've learned about already in |
| 1279 | more detail, and adds some new things as well. |
| 1280 | |
| 1281 | \section{More on Lists} |
| 1282 | |
| 1283 | The list data type has some more methods. Here are all of the methods |
| 1284 | of lists objects: |
| 1285 | |
Guido van Rossum | 7d9f8d7 | 1991-01-22 11:45:00 +0000 | [diff] [blame] | 1286 | \begin{description} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1287 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1288 | \item[\code{insert(i, x)}] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1289 | Insert an item at a given position. The first argument is the index of |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1290 | the element before which to insert, so \code{a.insert(0, x)} inserts at |
| 1291 | the front of the list, and \code{a.insert(len(a), x)} is equivalent to |
| 1292 | \code{a.append(x)}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1293 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1294 | \item[\code{append(x)}] |
| 1295 | Equivalent to \code{a.insert(len(a), x)}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1296 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1297 | \item[\code{index(x)}] |
| 1298 | Return the index in the list of the first item whose value is \code{x}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1299 | It is an error if there is no such item. |
| 1300 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1301 | \item[\code{remove(x)}] |
| 1302 | Remove the first item from the list whose value is \code{x}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1303 | It is an error if there is no such item. |
| 1304 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1305 | \item[\code{sort()}] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1306 | Sort the items of the list, in place. |
| 1307 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1308 | \item[\code{reverse()}] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1309 | Reverse the elements of the list, in place. |
| 1310 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1311 | \item[\code{count(x)}] |
| 1312 | Return the number of times \code{x} appears in the list. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1313 | |
Guido van Rossum | 7d9f8d7 | 1991-01-22 11:45:00 +0000 | [diff] [blame] | 1314 | \end{description} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1315 | |
| 1316 | An example that uses all list methods: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1317 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1318 | \bcode\begin{verbatim} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1319 | >>> a = [66.6, 333, 333, 1, 1234.5] |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1320 | >>> print a.count(333), a.count(66.6), a.count('x') |
| 1321 | 2 1 0 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1322 | >>> a.insert(2, -1) |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1323 | >>> a.append(333) |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1324 | >>> a |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1325 | [66.6, 333, -1, 333, 1, 1234.5, 333] |
| 1326 | >>> a.index(333) |
| 1327 | 1 |
| 1328 | >>> a.remove(333) |
| 1329 | >>> a |
| 1330 | [66.6, -1, 333, 1, 1234.5, 333] |
| 1331 | >>> a.reverse() |
| 1332 | >>> a |
| 1333 | [333, 1234.5, 1, 333, -1, 66.6] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1334 | >>> a.sort() |
| 1335 | >>> a |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1336 | [-1, 1, 66.6, 333, 333, 1234.5] |
| 1337 | >>> |
| 1338 | \end{verbatim}\ecode |
| 1339 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1340 | \subsection{Functional Programming Tools} |
| 1341 | |
| 1342 | There are three built-in functions that are very useful when used with |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1343 | lists: \code{filter()}, \code{map()}, and \code{reduce()}. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1344 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1345 | \code{filter(function, sequence)} returns a sequence (of the same |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1346 | type, if possible) consisting of those items from the sequence for |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1347 | which \code{function(item)} is true. For example, to compute some |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1348 | primes: |
| 1349 | |
| 1350 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1351 | >>> def f(x): return x%2 != 0 and x%3 != 0 |
| 1352 | ... |
| 1353 | >>> filter(f, range(2, 25)) |
| 1354 | [5, 7, 11, 13, 17, 19, 23] |
| 1355 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1356 | \end{verbatim} |
| 1357 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1358 | \code{map(function, sequence)} calls \code{function(item)} for each of |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1359 | the sequence's items and returns a list of the return values. For |
| 1360 | example, to compute some cubes: |
| 1361 | |
| 1362 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1363 | >>> def cube(x): return x*x*x |
| 1364 | ... |
| 1365 | >>> map(cube, range(1, 11)) |
| 1366 | [1, 8, 27, 64, 125, 216, 343, 512, 729, 1000] |
| 1367 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1368 | \end{verbatim} |
| 1369 | |
| 1370 | More than one sequence may be passed; the function must then have as |
| 1371 | many arguments as there are sequences and is called with the |
| 1372 | corresponding item from each sequence (or \verb\None\ if some sequence |
| 1373 | is shorter than another). If \verb\None\ is passed for the function, |
| 1374 | a function returning its argument(s) is substituted. |
| 1375 | |
| 1376 | Combining these two special cases, we see that |
| 1377 | \verb\map(None, list1, list2)\ is a convenient way of turning a pair |
| 1378 | of lists into a list of pairs. For example: |
| 1379 | |
| 1380 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1381 | >>> seq = range(8) |
| 1382 | >>> def square(x): return x*x |
| 1383 | ... |
| 1384 | >>> map(None, seq, map(square, seq)) |
| 1385 | [(0, 0), (1, 1), (2, 4), (3, 9), (4, 16), (5, 25), (6, 36), (7, 49)] |
| 1386 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1387 | \end{verbatim} |
| 1388 | |
| 1389 | \verb\reduce(func, sequence)\ returns a single value constructed |
| 1390 | by calling the binary function \verb\func\ on the first two items of the |
| 1391 | sequence, then on the result and the next item, and so on. For |
| 1392 | example, to compute the sum of the numbers 1 through 10: |
| 1393 | |
| 1394 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1395 | >>> def add(x,y): return x+y |
| 1396 | ... |
| 1397 | >>> reduce(add, range(1, 11)) |
| 1398 | 55 |
| 1399 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1400 | \end{verbatim} |
| 1401 | |
| 1402 | If there's only one item in the sequence, its value is returned; if |
| 1403 | the sequence is empty, an exception is raised. |
| 1404 | |
| 1405 | A third argument can be passed to indicate the starting value. In this |
| 1406 | case the starting value is returned for an empty sequence, and the |
| 1407 | function is first applied to the starting value and the first sequence |
| 1408 | item, then to the result and the next item, and so on. For example, |
| 1409 | |
| 1410 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1411 | >>> def sum(seq): |
| 1412 | ... def add(x,y): return x+y |
| 1413 | ... return reduce(add, seq, 0) |
| 1414 | ... |
| 1415 | >>> sum(range(1, 11)) |
| 1416 | 55 |
| 1417 | >>> sum([]) |
| 1418 | 0 |
| 1419 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1420 | \end{verbatim} |
| 1421 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1422 | \section{The \sectcode{del} statement} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1423 | |
| 1424 | There is a way to remove an item from a list given its index instead |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1425 | of its value: the \code{del} statement. This can also be used to |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1426 | remove slices from a list (which we did earlier by assignment of an |
| 1427 | empty list to the slice). For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1428 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1429 | \bcode\begin{verbatim} |
| 1430 | >>> a |
| 1431 | [-1, 1, 66.6, 333, 333, 1234.5] |
| 1432 | >>> del a[0] |
| 1433 | >>> a |
| 1434 | [1, 66.6, 333, 333, 1234.5] |
| 1435 | >>> del a[2:4] |
| 1436 | >>> a |
| 1437 | [1, 66.6, 1234.5] |
| 1438 | >>> |
| 1439 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1440 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1441 | \code{del} can also be used to delete entire variables: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1442 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1443 | \bcode\begin{verbatim} |
| 1444 | >>> del a |
| 1445 | >>> |
| 1446 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1447 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1448 | Referencing the name \code{a} hereafter is an error (at least until |
| 1449 | another value is assigned to it). We'll find other uses for \code{del} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1450 | later. |
| 1451 | |
| 1452 | \section{Tuples and Sequences} |
| 1453 | |
| 1454 | We saw that lists and strings have many common properties, e.g., |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1455 | indexing and slicing operations. They are two examples of |
| 1456 | \emph{sequence} data types. Since Python is an evolving language, |
| 1457 | other sequence data types may be added. There is also another |
| 1458 | standard sequence data type: the \emph{tuple}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1459 | |
| 1460 | A tuple consists of a number of values separated by commas, for |
| 1461 | instance: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1462 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1463 | \bcode\begin{verbatim} |
| 1464 | >>> t = 12345, 54321, 'hello!' |
| 1465 | >>> t[0] |
| 1466 | 12345 |
| 1467 | >>> t |
| 1468 | (12345, 54321, 'hello!') |
| 1469 | >>> # Tuples may be nested: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1470 | ... u = t, (1, 2, 3, 4, 5) |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1471 | >>> u |
| 1472 | ((12345, 54321, 'hello!'), (1, 2, 3, 4, 5)) |
| 1473 | >>> |
| 1474 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1475 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1476 | As you see, on output tuples are alway enclosed in parentheses, so |
| 1477 | that nested tuples are interpreted correctly; they may be input with |
| 1478 | or without surrounding parentheses, although often parentheses are |
| 1479 | necessary anyway (if the tuple is part of a larger expression). |
| 1480 | |
| 1481 | Tuples have many uses, e.g., (x, y) coordinate pairs, employee records |
| 1482 | from a database, etc. Tuples, like strings, are immutable: it is not |
| 1483 | possible to assign to the individual items of a tuple (you can |
| 1484 | simulate much of the same effect with slicing and concatenation, |
| 1485 | though). |
| 1486 | |
| 1487 | A special problem is the construction of tuples containing 0 or 1 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1488 | items: the syntax has some extra quirks to accommodate these. Empty |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1489 | tuples are constructed by an empty pair of parentheses; a tuple with |
| 1490 | one item is constructed by following a value with a comma |
| 1491 | (it is not sufficient to enclose a single value in parentheses). |
| 1492 | Ugly, but effective. For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1493 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1494 | \bcode\begin{verbatim} |
| 1495 | >>> empty = () |
| 1496 | >>> singleton = 'hello', # <-- note trailing comma |
| 1497 | >>> len(empty) |
| 1498 | 0 |
| 1499 | >>> len(singleton) |
| 1500 | 1 |
| 1501 | >>> singleton |
| 1502 | ('hello',) |
| 1503 | >>> |
| 1504 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1505 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1506 | The statement \code{t = 12345, 54321, 'hello!'} is an example of |
| 1507 | \emph{tuple packing}: the values \code{12345}, \code{54321} and |
| 1508 | \code{'hello!'} are packed together in a tuple. The reverse operation |
| 1509 | is also possible, e.g.: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1510 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1511 | \bcode\begin{verbatim} |
| 1512 | >>> x, y, z = t |
| 1513 | >>> |
| 1514 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1515 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1516 | This is called, appropriately enough, \emph{tuple unpacking}. Tuple |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1517 | unpacking requires that the list of variables on the left has the same |
| 1518 | number of elements as the length of the tuple. Note that multiple |
| 1519 | assignment is really just a combination of tuple packing and tuple |
| 1520 | unpacking! |
| 1521 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1522 | Occasionally, the corresponding operation on lists is useful: \emph{list |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1523 | unpacking}. This is supported by enclosing the list of variables in |
| 1524 | square brackets: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1525 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1526 | \bcode\begin{verbatim} |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 1527 | >>> a = ['spam', 'eggs', 100, 1234] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1528 | >>> [a1, a2, a3, a4] = a |
| 1529 | >>> |
| 1530 | \end{verbatim}\ecode |
| 1531 | |
| 1532 | \section{Dictionaries} |
| 1533 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1534 | Another useful data type built into Python is the \emph{dictionary}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1535 | Dictionaries are sometimes found in other languages as ``associative |
| 1536 | memories'' or ``associative arrays''. Unlike sequences, which are |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1537 | indexed by a range of numbers, dictionaries are indexed by \emph{keys}, |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1538 | which can be any non-mutable type; strings and numbers can always be |
| 1539 | keys. Tuples can be used as keys if they contain only strings, |
| 1540 | numbers, or tuples. You can't use lists as keys, since lists can be |
| 1541 | modified in place using their \code{append()} method. |
| 1542 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1543 | It is best to think of a dictionary as an unordered set of |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1544 | \emph{key:value} pairs, with the requirement that the keys are unique |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1545 | (within one dictionary). |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1546 | A pair of braces creates an empty dictionary: \code{\{\}}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1547 | Placing a comma-separated list of key:value pairs within the |
| 1548 | braces adds initial key:value pairs to the dictionary; this is also the |
| 1549 | way dictionaries are written on output. |
| 1550 | |
| 1551 | The main operations on a dictionary are storing a value with some key |
| 1552 | and extracting the value given the key. It is also possible to delete |
| 1553 | a key:value pair |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1554 | with \code{del}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1555 | If you store using a key that is already in use, the old value |
| 1556 | associated with that key is forgotten. It is an error to extract a |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1557 | value using a non-existent key. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1558 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1559 | The \code{keys()} method of a dictionary object returns a list of all the |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1560 | keys used in the dictionary, in random order (if you want it sorted, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1561 | just apply the \code{sort()} method to the list of keys). To check |
| 1562 | whether a single key is in the dictionary, use the \code{has_key()} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1563 | method of the dictionary. |
| 1564 | |
| 1565 | Here is a small example using a dictionary: |
| 1566 | |
| 1567 | \bcode\begin{verbatim} |
| 1568 | >>> tel = {'jack': 4098, 'sape': 4139} |
| 1569 | >>> tel['guido'] = 4127 |
| 1570 | >>> tel |
Guido van Rossum | 8f96f77 | 1991-11-12 15:45:03 +0000 | [diff] [blame] | 1571 | {'sape': 4139, 'guido': 4127, 'jack': 4098} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1572 | >>> tel['jack'] |
| 1573 | 4098 |
| 1574 | >>> del tel['sape'] |
| 1575 | >>> tel['irv'] = 4127 |
| 1576 | >>> tel |
Guido van Rossum | 8f96f77 | 1991-11-12 15:45:03 +0000 | [diff] [blame] | 1577 | {'guido': 4127, 'irv': 4127, 'jack': 4098} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1578 | >>> tel.keys() |
| 1579 | ['guido', 'irv', 'jack'] |
| 1580 | >>> tel.has_key('guido') |
| 1581 | 1 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1582 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1583 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1584 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1585 | \section{More on Conditions} |
| 1586 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1587 | The conditions used in \code{while} and \code{if} statements above can |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1588 | contain other operators besides comparisons. |
| 1589 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1590 | The comparison operators \code{in} and \code{not in} check whether a value |
| 1591 | occurs (does not occur) in a sequence. The operators \code{is} and |
| 1592 | \code{is not} compare whether two objects are really the same object; this |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1593 | only matters for mutable objects like lists. All comparison operators |
| 1594 | have the same priority, which is lower than that of all numerical |
| 1595 | operators. |
| 1596 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1597 | Comparisons can be chained: e.g., \code{a < b == c} tests whether \code{a} |
| 1598 | is less than \code{b} and moreover \code{b} equals \code{c}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1599 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1600 | Comparisons may be combined by the Boolean operators \code{and} and |
| 1601 | \code{or}, and the outcome of a comparison (or of any other Boolean |
| 1602 | expression) may be negated with \code{not}. These all have lower |
| 1603 | priorities than comparison operators again; between them, \code{not} has |
| 1604 | the highest priority, and \code{or} the lowest, so that |
| 1605 | \code{A and not B or C} is equivalent to \code{(A and (not B)) or C}. Of |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1606 | course, parentheses can be used to express the desired composition. |
| 1607 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1608 | The Boolean operators \code{and} and \code{or} are so-called |
| 1609 | \emph{shortcut} operators: their arguments are evaluated from left to |
| 1610 | right, and evaluation stops as soon as the outcome is determined. |
| 1611 | E.g., if \code{A} and \code{C} are true but \code{B} is false, \code{A |
| 1612 | and B and C} does not evaluate the expression C. In general, the |
| 1613 | return value of a shortcut operator, when used as a general value and |
| 1614 | not as a Boolean, is the last evaluated argument. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1615 | |
| 1616 | It is possible to assign the result of a comparison or other Boolean |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1617 | expression to a variable. For example, |
| 1618 | |
| 1619 | \bcode\begin{verbatim} |
| 1620 | >>> string1, string2, string3 = '', 'Trondheim', 'Hammer Dance' |
| 1621 | >>> non_null = string1 or string2 or string3 |
| 1622 | >>> non_null |
| 1623 | 'Trondheim' |
| 1624 | >>> |
| 1625 | \end{verbatim}\ecode |
| 1626 | % |
| 1627 | Note that in Python, unlike C, assignment cannot occur inside expressions. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1628 | |
| 1629 | \section{Comparing Sequences and Other Types} |
| 1630 | |
| 1631 | Sequence objects may be compared to other objects with the same |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1632 | sequence type. The comparison uses \emph{lexicographical} ordering: |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1633 | first the first two items are compared, and if they differ this |
| 1634 | determines the outcome of the comparison; if they are equal, the next |
| 1635 | two items are compared, and so on, until either sequence is exhausted. |
| 1636 | If two items to be compared are themselves sequences of the same type, |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1637 | the lexicographical comparison is carried out recursively. If all |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1638 | items of two sequences compare equal, the sequences are considered |
| 1639 | equal. If one sequence is an initial subsequence of the other, the |
| 1640 | shorted sequence is the smaller one. Lexicographical ordering for |
Guido van Rossum | 47b4c0f | 1995-03-15 11:25:32 +0000 | [diff] [blame] | 1641 | strings uses the \ASCII{} ordering for individual characters. Some |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1642 | examples of comparisons between sequences with the same types: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1643 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1644 | \bcode\begin{verbatim} |
| 1645 | (1, 2, 3) < (1, 2, 4) |
| 1646 | [1, 2, 3] < [1, 2, 4] |
| 1647 | 'ABC' < 'C' < 'Pascal' < 'Python' |
| 1648 | (1, 2, 3, 4) < (1, 2, 4) |
| 1649 | (1, 2) < (1, 2, -1) |
| 1650 | (1, 2, 3) = (1.0, 2.0, 3.0) |
| 1651 | (1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4) |
| 1652 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1653 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1654 | Note that comparing objects of different types is legal. The outcome |
| 1655 | is deterministic but arbitrary: the types are ordered by their name. |
| 1656 | Thus, a list is always smaller than a string, a string is always |
| 1657 | smaller than a tuple, etc. Mixed numeric types are compared according |
| 1658 | to their numeric value, so 0 equals 0.0, etc.% |
| 1659 | \footnote{ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1660 | The rules for comparing objects of different types should |
| 1661 | not be relied upon; they may change in a future version of |
| 1662 | the language. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 1665 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1666 | \chapter{Modules} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1667 | |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 1668 | If you quit from the Python interpreter and enter it again, the |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1669 | definitions you have made (functions and variables) are lost. |
| 1670 | Therefore, if you want to write a somewhat longer program, you are |
| 1671 | better off using a text editor to prepare the input for the interpreter |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1672 | and running it with that file as input instead. This is known as creating a |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1673 | \emph{script}. As your program gets longer, you may want to split it |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1674 | into several files for easier maintenance. You may also want to use a |
| 1675 | handy function that you've written in several programs without copying |
| 1676 | its definition into each program. |
| 1677 | |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 1678 | To support this, Python has a way to put definitions in a file and use |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1679 | them in a script or in an interactive instance of the interpreter. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1680 | Such a file is called a \emph{module}; definitions from a module can be |
| 1681 | \emph{imported} into other modules or into the \emph{main} module (the |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1682 | collection of variables that you have access to in a script |
| 1683 | executed at the top level |
| 1684 | and in calculator mode). |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1685 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1686 | A module is a file containing Python definitions and statements. The |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1687 | file name is the module name with the suffix \file{.py} appended. Within |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1688 | a module, the module's name (as a string) is available as the value of |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1689 | the global variable \code{__name__}. For instance, use your favorite text |
| 1690 | editor to create a file called \file{fibo.py} in the current directory |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1691 | with the following contents: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1692 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1693 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1694 | # Fibonacci numbers module |
| 1695 | |
| 1696 | def fib(n): # write Fibonacci series up to n |
| 1697 | a, b = 0, 1 |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 1698 | while b < n: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1699 | print b, |
| 1700 | a, b = b, a+b |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1701 | |
| 1702 | def fib2(n): # return Fibonacci series up to n |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1703 | result = [] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1704 | a, b = 0, 1 |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 1705 | while b < n: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1706 | result.append(b) |
| 1707 | a, b = b, a+b |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1708 | return result |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1709 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1710 | % |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 1711 | Now enter the Python interpreter and import this module with the |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1712 | following command: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1713 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1714 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1715 | >>> import fibo |
| 1716 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1717 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1718 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1719 | This does not enter the names of the functions defined in |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1720 | \code{fibo} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1721 | directly in the current symbol table; it only enters the module name |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1722 | \code{fibo} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1723 | there. |
| 1724 | Using the module name you can access the functions: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1725 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1726 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1727 | >>> fibo.fib(1000) |
| 1728 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 |
| 1729 | >>> fibo.fib2(100) |
| 1730 | [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1731 | >>> fibo.__name__ |
| 1732 | 'fibo' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1733 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1734 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1735 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1736 | If you intend to use a function often you can assign it to a local name: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1737 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1738 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1739 | >>> fib = fibo.fib |
| 1740 | >>> fib(500) |
| 1741 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 |
| 1742 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1743 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1744 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1745 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1746 | \section{More on Modules} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1747 | |
| 1748 | A module can contain executable statements as well as function |
| 1749 | definitions. |
| 1750 | These statements are intended to initialize the module. |
| 1751 | They are executed only the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1752 | \emph{first} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1753 | time the module is imported somewhere.% |
| 1754 | \footnote{ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1755 | In fact function definitions are also `statements' that are |
| 1756 | `executed'; the execution enters the function name in the |
| 1757 | module's global symbol table. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1758 | } |
| 1759 | |
| 1760 | Each module has its own private symbol table, which is used as the |
| 1761 | global symbol table by all functions defined in the module. |
| 1762 | Thus, the author of a module can use global variables in the module |
| 1763 | without worrying about accidental clashes with a user's global |
| 1764 | variables. |
| 1765 | On the other hand, if you know what you are doing you can touch a |
| 1766 | module's global variables with the same notation used to refer to its |
| 1767 | functions, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1768 | \code{modname.itemname}. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1769 | |
| 1770 | Modules can import other modules. |
| 1771 | It is customary but not required to place all |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1772 | \code{import} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1773 | statements at the beginning of a module (or script, for that matter). |
| 1774 | The imported module names are placed in the importing module's global |
| 1775 | symbol table. |
| 1776 | |
| 1777 | There is a variant of the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1778 | \code{import} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1779 | statement that imports names from a module directly into the importing |
| 1780 | module's symbol table. |
| 1781 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1782 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1783 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1784 | >>> from fibo import fib, fib2 |
| 1785 | >>> fib(500) |
| 1786 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 |
| 1787 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1788 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1789 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1790 | This does not introduce the module name from which the imports are taken |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1791 | in the local symbol table (so in the example, \code{fibo} is not |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1792 | defined). |
| 1793 | |
| 1794 | There is even a variant to import all names that a module defines: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1795 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1796 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1797 | >>> from fibo import * |
| 1798 | >>> fib(500) |
| 1799 | 1 1 2 3 5 8 13 21 34 55 89 144 233 377 |
| 1800 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1801 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1802 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1803 | This imports all names except those beginning with an underscore |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1804 | (\code{_}). |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1805 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1806 | \subsection{The Module Search Path} |
| 1807 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1808 | When a module named \code{spam} is imported, the interpreter searches |
| 1809 | for a file named \file{spam.py} in the current directory, |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1810 | and then in the list of directories specified by |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1811 | the environment variable \code{PYTHONPATH}. This has the same syntax as |
| 1812 | the \UNIX{} shell variable \code{PATH}, i.e., a list of colon-separated |
| 1813 | directory names. When \code{PYTHONPATH} is not set, or when the file |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1814 | is not found there, the search continues in an installation-dependent |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1815 | default path, usually \code{.:/usr/local/lib/python}. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1816 | |
| 1817 | Actually, modules are searched in the list of directories given by the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1818 | variable \code{sys.path} which is initialized from the directory |
| 1819 | containing the input script (or the current directory), |
| 1820 | \code{PYTHONPATH} and the installation-dependent default. This allows |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1821 | Python programs that know what they're doing to modify or replace the |
| 1822 | module search path. See the section on Standard Modules later. |
| 1823 | |
| 1824 | \subsection{``Compiled'' Python files} |
| 1825 | |
| 1826 | As an important speed-up of the start-up time for short programs that |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1827 | use a lot of standard modules, if a file called \file{spam.pyc} exists |
| 1828 | in the directory where \file{spam.py} is found, this is assumed to |
| 1829 | contain an already-``compiled'' version of the module \code{spam}. The |
| 1830 | modification time of the version of \file{spam.py} used to create |
| 1831 | \file{spam.pyc} is recorded in \file{spam.pyc}, and the file is |
| 1832 | ignored if these don't match. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1833 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1834 | Normally, you don't need to do anything to create the \file{spam.pyc} file. |
| 1835 | Whenever \file{spam.py} is successfully compiled, an attempt is made to |
| 1836 | write the compiled version to \file{spam.pyc}. It is not an error if |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1837 | this attempt fails; if for any reason the file is not written |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1838 | completely, the resulting \file{spam.pyc} file will be recognized as |
| 1839 | invalid and thus ignored later. The contents of the \file{spam.pyc} |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1840 | file is platform independent, so a Python module directory can be |
| 1841 | shared by machines of different architectures. (Tip for experts: |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1842 | the module \code{compileall} creates file{.pyc} files for all modules.) |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1843 | |
| 1844 | XXX Should optimization with -O be covered here? |
| 1845 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1846 | \section{Standard Modules} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1847 | |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 1848 | Python comes with a library of standard modules, described in a separate |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1849 | document (Python Library Reference). Some modules are built into the |
| 1850 | interpreter; these provide access to operations that are not part of the |
| 1851 | core of the language but are nevertheless built in, either for |
| 1852 | efficiency or to provide access to operating system primitives such as |
| 1853 | system calls. The set of such modules is a configuration option; e.g., |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1854 | the \code{amoeba} module is only provided on systems that somehow support |
| 1855 | Amoeba primitives. One particular module deserves some attention: |
| 1856 | \code{sys}, which is built into every Python interpreter. The |
| 1857 | variables \code{sys.ps1} and \code{sys.ps2} define the strings used as |
| 1858 | primary and secondary prompts: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1859 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1860 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1861 | >>> import sys |
| 1862 | >>> sys.ps1 |
| 1863 | '>>> ' |
| 1864 | >>> sys.ps2 |
| 1865 | '... ' |
| 1866 | >>> sys.ps1 = 'C> ' |
| 1867 | C> print 'Yuck!' |
| 1868 | Yuck! |
| 1869 | C> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1870 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1871 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1872 | These two variables are only defined if the interpreter is in |
| 1873 | interactive mode. |
| 1874 | |
| 1875 | The variable |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1876 | \code{sys.path} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1877 | is a list of strings that determine the interpreter's search path for |
| 1878 | modules. |
| 1879 | It is initialized to a default path taken from the environment variable |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1880 | \code{PYTHONPATH}, |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1881 | or from a built-in default if |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1882 | \code{PYTHONPATH} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1883 | is not set. |
| 1884 | You can modify it using standard list operations, e.g.: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1885 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1886 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1887 | >>> import sys |
| 1888 | >>> sys.path.append('/ufs/guido/lib/python') |
| 1889 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 1890 | \end{verbatim}\ecode |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1891 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1892 | \section{The \sectcode{dir()} function} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1893 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1894 | The built-in function \code{dir()} is used to find out which names a module |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1895 | defines. It returns a sorted list of strings: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1896 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1897 | \bcode\begin{verbatim} |
| 1898 | >>> import fibo, sys |
| 1899 | >>> dir(fibo) |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1900 | ['__name__', 'fib', 'fib2'] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1901 | >>> dir(sys) |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1902 | ['__name__', 'argv', 'builtin_module_names', 'copyright', 'exit', |
| 1903 | 'maxint', 'modules', 'path', 'ps1', 'ps2', 'setprofile', 'settrace', |
| 1904 | 'stderr', 'stdin', 'stdout', 'version'] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1905 | >>> |
| 1906 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1907 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1908 | Without arguments, \code{dir()} lists the names you have defined currently: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1909 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1910 | \bcode\begin{verbatim} |
| 1911 | >>> a = [1, 2, 3, 4, 5] |
| 1912 | >>> import fibo, sys |
| 1913 | >>> fib = fibo.fib |
| 1914 | >>> dir() |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1915 | ['__name__', 'a', 'fib', 'fibo', 'sys'] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1916 | >>> |
| 1917 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1918 | % |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1919 | Note that it lists all types of names: variables, modules, functions, etc. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 1920 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1921 | \code{dir()} does not list the names of built-in functions and variables. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1922 | If you want a list of those, they are defined in the standard module |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1923 | \code{__builtin__}: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1924 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1925 | \bcode\begin{verbatim} |
Guido van Rossum | 4bd023f | 1993-10-27 13:49:20 +0000 | [diff] [blame] | 1926 | >>> import __builtin__ |
| 1927 | >>> dir(__builtin__) |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1928 | ['AccessError', 'AttributeError', 'ConflictError', 'EOFError', 'IOError', |
| 1929 | 'ImportError', 'IndexError', 'KeyError', 'KeyboardInterrupt', |
| 1930 | 'MemoryError', 'NameError', 'None', 'OverflowError', 'RuntimeError', |
| 1931 | 'SyntaxError', 'SystemError', 'SystemExit', 'TypeError', 'ValueError', |
| 1932 | 'ZeroDivisionError', '__name__', 'abs', 'apply', 'chr', 'cmp', 'coerce', |
| 1933 | 'compile', 'dir', 'divmod', 'eval', 'execfile', 'filter', 'float', |
| 1934 | 'getattr', 'hasattr', 'hash', 'hex', 'id', 'input', 'int', 'len', 'long', |
| 1935 | 'map', 'max', 'min', 'oct', 'open', 'ord', 'pow', 'range', 'raw_input', |
| 1936 | 'reduce', 'reload', 'repr', 'round', 'setattr', 'str', 'type', 'xrange'] |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1937 | >>> |
| 1938 | \end{verbatim}\ecode |
| 1939 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 1940 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1941 | \chapter{Input and Output} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1942 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1943 | There are several ways to present the output of a program; data can be |
| 1944 | printed in a human-readable form, or written to a file for future use. |
| 1945 | This chapter will discuss some of the possibilities. |
| 1946 | |
| 1947 | \section{Fancier Output Formatting} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1948 | So far we've encountered two ways of writing values: \emph{expression |
| 1949 | statements} and the \code{print} statement. (A third way is using the |
| 1950 | \code{write} method of file objects; the standard output file can be |
| 1951 | referenced as \code{sys.stdout}. See the Library Reference for more |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1952 | information on this.) |
| 1953 | |
| 1954 | Often you'll want more control over the formatting of your output than |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1955 | simply printing space-separated values. There are two ways to format |
| 1956 | your output; the first way is to do all the string handling yourself; |
| 1957 | using string slicing and concatenation operations you can create any |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1958 | lay-out you can imagine. The standard module \code{string} contains |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1959 | some useful operations for padding strings to a given column width; |
| 1960 | these will be discussed shortly. The second way is to use the |
| 1961 | \code{\%} operator with a string as the left argument. \code{\%} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1962 | interprets the left argument as a \C{} \code{sprintf()}-style format |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1963 | string to be applied to the right argument, and returns the string |
| 1964 | resulting from this formatting operation. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1965 | |
| 1966 | One question remains, of course: how do you convert values to strings? |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1967 | Luckily, Python has a way to convert any value to a string: pass it to |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 1968 | the \code{repr()} function, or just write the value between reverse |
| 1969 | quotes (\code{``}). Some examples: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1970 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1971 | \bcode\begin{verbatim} |
| 1972 | >>> x = 10 * 3.14 |
| 1973 | >>> y = 200*200 |
| 1974 | >>> s = 'The value of x is ' + `x` + ', and y is ' + `y` + '...' |
| 1975 | >>> print s |
| 1976 | The value of x is 31.4, and y is 40000... |
| 1977 | >>> # Reverse quotes work on other types besides numbers: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1978 | ... p = [x, y] |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 1979 | >>> ps = repr(p) |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1980 | >>> ps |
| 1981 | '[31.4, 40000]' |
| 1982 | >>> # Converting a string adds string quotes and backslashes: |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1983 | ... hello = 'hello, world\n' |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1984 | >>> hellos = `hello` |
| 1985 | >>> print hellos |
| 1986 | 'hello, world\012' |
| 1987 | >>> # The argument of reverse quotes may be a tuple: |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 1988 | ... `x, y, ('spam', 'eggs')` |
| 1989 | "(31.4, 40000, ('spam', 'eggs'))" |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1990 | >>> |
| 1991 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1992 | % |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1993 | Here are two ways to write a table of squares and cubes: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 1994 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 1995 | \bcode\begin{verbatim} |
| 1996 | >>> import string |
| 1997 | >>> for x in range(1, 11): |
| 1998 | ... print string.rjust(`x`, 2), string.rjust(`x*x`, 3), |
| 1999 | ... # Note trailing comma on previous line |
| 2000 | ... print string.rjust(`x*x*x`, 4) |
| 2001 | ... |
| 2002 | 1 1 1 |
| 2003 | 2 4 8 |
| 2004 | 3 9 27 |
| 2005 | 4 16 64 |
| 2006 | 5 25 125 |
| 2007 | 6 36 216 |
| 2008 | 7 49 343 |
| 2009 | 8 64 512 |
| 2010 | 9 81 729 |
| 2011 | 10 100 1000 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2012 | >>> for x in range(1,11): |
| 2013 | ... print '%2d %3d %4d' % (x, x*x, x*x*x) |
| 2014 | ... |
| 2015 | 1 1 1 |
| 2016 | 2 4 8 |
| 2017 | 3 9 27 |
| 2018 | 4 16 64 |
| 2019 | 5 25 125 |
| 2020 | 6 36 216 |
| 2021 | 7 49 343 |
| 2022 | 8 64 512 |
| 2023 | 9 81 729 |
| 2024 | 10 100 1000 |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2025 | >>> |
| 2026 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2027 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2028 | (Note that one space between each column was added by the way \code{print} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2029 | works: it always adds spaces between its arguments.) |
| 2030 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2031 | This example demonstrates the function \code{string.rjust()}, which |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2032 | right-justifies a string in a field of a given width by padding it with |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2033 | spaces on the left. There are similar functions \code{string.ljust()} |
| 2034 | and \code{string.center()}. These functions do not write anything, they |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2035 | just return a new string. If the input string is too long, they don't |
| 2036 | truncate it, but return it unchanged; this will mess up your column |
| 2037 | lay-out but that's usually better than the alternative, which would be |
| 2038 | lying about a value. (If you really want truncation you can always add |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2039 | a slice operation, as in \code{string.ljust(x,~n)[0:n]}.) |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2040 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2041 | There is another function, \code{string.zfill()}, which pads a numeric |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2042 | string on the left with zeros. It understands about plus and minus |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2043 | signs: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2044 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2045 | \bcode\begin{verbatim} |
| 2046 | >>> string.zfill('12', 5) |
| 2047 | '00012' |
| 2048 | >>> string.zfill('-3.14', 7) |
| 2049 | '-003.14' |
| 2050 | >>> string.zfill('3.14159265359', 5) |
| 2051 | '3.14159265359' |
| 2052 | >>> |
| 2053 | \end{verbatim}\ecode |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2054 | % |
| 2055 | Using the \code{\%} operator looks like this: |
| 2056 | |
| 2057 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2058 | >>> import math |
| 2059 | >>> print 'The value of PI is approximately %5.3f.' % math.pi |
| 2060 | The value of PI is approximately 3.142. |
| 2061 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2062 | \end{verbatim} |
| 2063 | |
| 2064 | If there is more than one format in the string you pass a tuple as |
| 2065 | right operand, e.g. |
| 2066 | |
| 2067 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2068 | >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678} |
| 2069 | >>> for name, phone in table.items(): |
| 2070 | ... print '%-10s ==> %10d' % (name, phone) |
| 2071 | ... |
| 2072 | Jack ==> 4098 |
| 2073 | Dcab ==> 8637678 |
| 2074 | Sjoerd ==> 4127 |
| 2075 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2076 | \end{verbatim} |
| 2077 | |
| 2078 | Most formats work exactly as in C and require that you pass the proper |
| 2079 | type; however, if you don't you get an exception, not a core dump. |
| 2080 | The \verb\%s\ format is more relaxed: if the corresponding argument is |
| 2081 | not a string object, it is converted to string using the \verb\str()\ |
| 2082 | built-in function. Using \verb\*\ to pass the width or precision in |
| 2083 | as a separate (integer) argument is supported. The C formats |
| 2084 | \verb\%n\ and \verb\%p\ are not supported. |
| 2085 | |
| 2086 | If you have a really long format string that you don't want to split |
| 2087 | up, it would be nice if you could reference the variables to be |
| 2088 | formatted by name instead of by position. This can be done by using |
| 2089 | an extension of C formats using the form \verb\%(name)format\, e.g. |
| 2090 | |
| 2091 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2092 | >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678} |
| 2093 | >>> print 'Jack: %(Jack)d; Sjoerd: %(Sjoerd)d; Dcab: %(Dcab)d' % table |
| 2094 | Jack: 4098; Sjoerd: 4127; Dcab: 8637678 |
| 2095 | >>> |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2096 | \end{verbatim} |
| 2097 | |
| 2098 | This is particularly useful in combination with the new built-in |
| 2099 | \verb\vars()\ function, which returns a dictionary containing all |
| 2100 | local variables. |
| 2101 | |
| 2102 | \section{Reading and Writing Files} |
| 2103 | % Opening files |
| 2104 | \code{open()} returns a file object, and is most commonly used with |
| 2105 | two arguments: \code{open(\var{filename},\var{mode})}. |
| 2106 | |
| 2107 | \bcode\begin{verbatim} |
| 2108 | >>> f=open('/tmp/workfile', 'w') |
| 2109 | >>> print f |
| 2110 | <open file '/tmp/workfile', mode 'w' at 80a0960> |
| 2111 | \end{verbatim}\ecode |
| 2112 | % |
| 2113 | The first argument is a string containing the filename. The second |
| 2114 | argument is another string containing a few characters describing the |
| 2115 | way in which the file will be used. \var{mode} can be \code{'r'} when |
| 2116 | the file will only be read, \code{'w'} for only writing (an existing |
| 2117 | file with the same name will be erased), and \code{'a'} opens the file |
| 2118 | for appending; any data written to the file is automatically added to |
| 2119 | the end. \code{'r+'} opens the file for both reading and writing. |
| 2120 | The \var{mode} argument is optional; \code{'r'} will be assumed if |
| 2121 | it's omitted. |
| 2122 | |
| 2123 | On Windows, (XXX does the Mac need this too?) \code{'b'} appended to the |
| 2124 | mode opens the file in binary mode, so there are also modes like |
| 2125 | \code{'rb'}, \code{'wb'}, and \code{'r+b'}. Windows makes a |
| 2126 | distinction between text and binary files; the end-of-line characters |
| 2127 | in text files are automatically altered slightly when data is read or |
| 2128 | written. This behind-the-scenes modification to file data is fine for |
| 2129 | ASCII text files, but it'll corrupt binary data like that in JPEGs or |
| 2130 | .EXE files. Be very careful to use binary mode when reading and |
| 2131 | writing such files. |
| 2132 | |
| 2133 | \subsection{Methods of file objects} |
| 2134 | |
| 2135 | The rest of the examples in this section will assume that a file |
| 2136 | object called \code{f} has already been created. |
| 2137 | |
| 2138 | To read a file's contents, call \code{f.read(\var{size})}, which reads |
| 2139 | some quantity of data and returns it as a string. \var{size} is an |
| 2140 | optional numeric argument. When \var{size} is omitted or negative, |
| 2141 | the entire contents of the file will be read and returned; it's your |
| 2142 | problem if the file is twice as large as your machine's memory. |
| 2143 | Otherwise, at most \var{size} bytes are read and returned. If the end |
| 2144 | of the file has been reached, \code{f.read()} will return an empty |
| 2145 | string (\code {""}). |
| 2146 | \bcode\begin{verbatim} |
| 2147 | >>> f.read() |
| 2148 | 'This is the entire file.\012' |
| 2149 | >>> f.read() |
| 2150 | '' |
| 2151 | \end{verbatim}\ecode |
| 2152 | % |
| 2153 | \code{f.readline()} reads a single line from the file; a newline |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2154 | character (\code{\\n}) is left at the end of the string, and is only |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2155 | omitted on the last line of the file if the file doesn't end in a |
| 2156 | newline. This makes the return value unambiguous; if |
| 2157 | \code{f.readline()} returns an empty string, the end of the file has |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2158 | been reached, while a blank line is represented by \code{'\\n'}, a |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2159 | string containing only a single newline. |
| 2160 | |
| 2161 | \bcode\begin{verbatim} |
| 2162 | >>> f.readline() |
| 2163 | 'This is the first line of the file.\012' |
| 2164 | >>> f.readline() |
| 2165 | 'Second line of the file\012' |
| 2166 | >>> f.readline() |
| 2167 | '' |
| 2168 | \end{verbatim}\ecode |
| 2169 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2170 | \code{f.readlines()} uses \code{f.readline()} repeatedly, and returns |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2171 | a list containing all the lines of data in the file. |
| 2172 | |
| 2173 | \bcode\begin{verbatim} |
| 2174 | >>> f.readlines() |
| 2175 | ['This is the first line of the file.\012', 'Second line of the file\012'] |
| 2176 | \end{verbatim}\ecode |
| 2177 | % |
| 2178 | \code{f.write(\var{string})} writes the contents of \var{string} to |
| 2179 | the file, returning \code{None}. |
| 2180 | |
| 2181 | \bcode\begin{verbatim} |
| 2182 | >>> f.write('This is a test\n') |
| 2183 | \end{verbatim}\ecode |
| 2184 | % |
| 2185 | \code{f.tell()} returns an integer giving the file object's current |
| 2186 | position in the file, measured in bytes from the beginning of the |
| 2187 | file. To change the file object's position, use |
| 2188 | \code{f.seek(\var{offset}, \var{from_what})}. The position is |
| 2189 | computed from adding \var{offset} to a reference point; the reference |
| 2190 | point is selected by the \var{from_what} argument. A \var{from_what} |
| 2191 | value of 0 measures from the beginning of the file, 1 uses the current |
| 2192 | file position, and 2 uses the end of the file as the reference point. |
| 2193 | \var{from_what} |
| 2194 | can be omitted and defaults to 0, using the beginning of the file as the reference point. |
| 2195 | |
| 2196 | \bcode\begin{verbatim} |
| 2197 | >>> f=open('/tmp/workfile', 'r+') |
| 2198 | >>> f.write('0123456789abcdef') |
| 2199 | >>> f.seek(5) # Go to the 5th byte in the file |
| 2200 | >>> f.read(1) |
| 2201 | '5' |
| 2202 | >>> f.seek(-3, 2) # Go to the 3rd byte before the end |
| 2203 | >>> f.read(1) |
| 2204 | 'd' |
| 2205 | \end{verbatim}\ecode |
| 2206 | % |
| 2207 | When you're done with a file, call \code{f.close()} to close it and |
| 2208 | free up any system resources taken up by the open file. After calling |
| 2209 | \code{f.close()}, attempts to use the file object will automatically fail. |
| 2210 | |
| 2211 | \bcode\begin{verbatim} |
| 2212 | >>> f.close() |
| 2213 | >>> f.read() |
| 2214 | Traceback (innermost last): |
| 2215 | File "<stdin>", line 1, in ? |
| 2216 | ValueError: I/O operation on closed file |
| 2217 | \end{verbatim}\ecode |
| 2218 | % |
| 2219 | File objects have some additional methods, such as \code{isatty()} and |
| 2220 | \code{truncate()} which are less frequently used; consult the Library |
| 2221 | Reference for a complete guide to file objects. |
| 2222 | |
| 2223 | \subsection{The pickle module} |
| 2224 | |
| 2225 | Strings can easily be written to and read from a file. Numbers take a |
| 2226 | bit more effort, since the \code{read()} method only returns strings, |
| 2227 | which will have to be passed to a function like \code{string.atoi()}, |
| 2228 | which takes a string like \code{'123'} and returns its numeric value |
| 2229 | 123. However, when you want to save more complex data types like |
| 2230 | lists, dictionaries, or class instances, things get a lot more |
| 2231 | complicated. |
| 2232 | |
| 2233 | Rather than have users be constantly writing and debugging code to |
| 2234 | save complicated data types, Python provides a standard module called |
Fred Drake | 9e63faa | 1997-10-15 14:37:24 +0000 | [diff] [blame] | 2235 | \code{pickle}. This is an amazing module that can take almost |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2236 | any Python object (even some forms of Python code!), and convert it to |
| 2237 | a string representation; this process is called \dfn{pickling}. |
| 2238 | Reconstructing the object from the string representation is called |
| 2239 | \dfn{unpickling}. Between pickling and unpickling, the string |
| 2240 | representing the object may have been stored in a file or data, or |
| 2241 | sent over a network connection to some distant machine. |
| 2242 | |
| 2243 | If you have an object \code{x}, and a file object \code{f} that's been |
| 2244 | opened for writing, the simplest way to pickle the object takes only |
| 2245 | one line of code: |
| 2246 | |
| 2247 | \bcode\begin{verbatim} |
| 2248 | pickle.dump(x, f) |
| 2249 | \end{verbatim}\ecode |
| 2250 | % |
| 2251 | To unpickle the object again, if \code{f} is a file object which has been |
| 2252 | opened for reading: |
| 2253 | |
| 2254 | \bcode\begin{verbatim} |
| 2255 | x = pickle.load(f) |
| 2256 | \end{verbatim}\ecode |
| 2257 | % |
| 2258 | (There are other variants of this, used when pickling many objects or |
| 2259 | when you don't want to write the pickled data to a file; consult the |
| 2260 | complete documentation for \code{pickle} in the Library Reference.) |
| 2261 | |
| 2262 | \code{pickle} is the standard way to make Python objects which can be |
| 2263 | stored and reused by other programs or by a future invocation of the |
| 2264 | same program; the technical term for this is a \dfn{persistent} |
| 2265 | object. Because \code{pickle} is so widely used, many authors who |
| 2266 | write Python extensions take care to ensure that new data types such |
| 2267 | as matrices, XXX more examples needed XXX, can be properly pickled and |
| 2268 | unpickled. |
| 2269 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2270 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2271 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2272 | \chapter{Errors and Exceptions} |
| 2273 | |
| 2274 | Until now error messages haven't been more than mentioned, but if you |
| 2275 | have tried out the examples you have probably seen some. There are |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2276 | (at least) two distinguishable kinds of errors: \emph{syntax errors} |
| 2277 | and \emph{exceptions}. |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2278 | |
| 2279 | \section{Syntax Errors} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2280 | |
| 2281 | Syntax errors, also known as parsing errors, are perhaps the most common |
Guido van Rossum | 4410c75 | 1991-06-04 20:22:18 +0000 | [diff] [blame] | 2282 | kind of complaint you get while you are still learning Python: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2283 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2284 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2285 | >>> while 1 print 'Hello world' |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2286 | File "<stdin>", line 1 |
| 2287 | while 1 print 'Hello world' |
| 2288 | ^ |
| 2289 | SyntaxError: invalid syntax |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2290 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2291 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2292 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2293 | The parser repeats the offending line and displays a little `arrow' |
| 2294 | pointing at the earliest point in the line where the error was detected. |
| 2295 | The error is caused by (or at least detected at) the token |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2296 | \emph{preceding} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2297 | the arrow: in the example, the error is detected at the keyword |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2298 | \code{print}, since a colon (\code{:}) is missing before it. |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2299 | File name and line number are printed so you know where to look in case |
| 2300 | the input came from a script. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2301 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2302 | \section{Exceptions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2303 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2304 | Even if a statement or expression is syntactically correct, it may |
| 2305 | cause an error when an attempt is made to execute it. |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2306 | Errors detected during execution are called \emph{exceptions} and are |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2307 | not unconditionally fatal: you will soon learn how to handle them in |
| 2308 | Python programs. Most exceptions are not handled by programs, |
| 2309 | however, and result in error messages as shown here: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2310 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2311 | \bcode\small\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2312 | >>> 10 * (1/0) |
Guido van Rossum | 3cbc16d | 1993-12-17 12:13:53 +0000 | [diff] [blame] | 2313 | Traceback (innermost last): |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2314 | File "<stdin>", line 1 |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2315 | ZeroDivisionError: integer division or modulo |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 2316 | >>> 4 + spam*3 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2317 | Traceback (innermost last): |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2318 | File "<stdin>", line 1 |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 2319 | NameError: spam |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2320 | >>> '2' + 2 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2321 | Traceback (innermost last): |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2322 | File "<stdin>", line 1 |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2323 | TypeError: illegal argument type for built-in operation |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2324 | >>> |
Fred Drake | fd255e4 | 1996-10-29 15:50:05 +0000 | [diff] [blame] | 2325 | \end{verbatim}\normalsize\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2326 | % |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2327 | The last line of the error message indicates what happened. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2328 | Exceptions come in different types, and the type is printed as part of |
| 2329 | the message: the types in the example are |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2330 | \code{ZeroDivisionError}, |
| 2331 | \code{NameError} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2332 | and |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2333 | \code{TypeError}. |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2334 | The string printed as the exception type is the name of the built-in |
| 2335 | name for the exception that occurred. This is true for all built-in |
| 2336 | exceptions, but need not be true for user-defined exceptions (although |
| 2337 | it is a useful convention). |
| 2338 | Standard exception names are built-in identifiers (not reserved |
| 2339 | keywords). |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2340 | |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2341 | The rest of the line is a detail whose interpretation depends on the |
| 2342 | exception type; its meaning is dependent on the exception type. |
| 2343 | |
| 2344 | The preceding part of the error message shows the context where the |
| 2345 | exception happened, in the form of a stack backtrace. |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2346 | In general it contains a stack backtrace listing source lines; however, |
| 2347 | it will not display lines read from standard input. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2348 | |
Guido van Rossum | 6a05f95 | 1996-10-22 19:27:46 +0000 | [diff] [blame] | 2349 | The Python Library Reference Manual lists the built-in exceptions and |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2350 | their meanings. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2351 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2352 | \section{Handling Exceptions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2353 | |
| 2354 | It is possible to write programs that handle selected exceptions. |
| 2355 | Look at the following example, which prints a table of inverses of |
| 2356 | some floating point numbers: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2357 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2358 | \bcode\begin{verbatim} |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2359 | >>> numbers = [0.3333, 2.5, 0, 10] |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2360 | >>> for x in numbers: |
| 2361 | ... print x, |
| 2362 | ... try: |
| 2363 | ... print 1.0 / x |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2364 | ... except ZeroDivisionError: |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2365 | ... print '*** has no inverse ***' |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2366 | ... |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2367 | 0.3333 3.00030003 |
| 2368 | 2.5 0.4 |
| 2369 | 0 *** has no inverse *** |
| 2370 | 10 0.1 |
| 2371 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2372 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2373 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2374 | The \code{try} statement works as follows. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2375 | \begin{itemize} |
| 2376 | \item |
| 2377 | First, the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2378 | \emph{try\ clause} |
| 2379 | (the statement(s) between the \code{try} and \code{except} keywords) is |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2380 | executed. |
| 2381 | \item |
| 2382 | If no exception occurs, the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2383 | \emph{except\ clause} |
| 2384 | is skipped and execution of the \code{try} statement is finished. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2385 | \item |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2386 | If an exception occurs during execution of the try clause, |
| 2387 | the rest of the clause is skipped. Then if |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2388 | its type matches the exception named after the \code{except} keyword, |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2389 | the rest of the try clause is skipped, the except clause is executed, |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2390 | and then execution continues after the \code{try} statement. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2391 | \item |
| 2392 | If an exception occurs which does not match the exception named in the |
| 2393 | except clause, it is passed on to outer try statements; if no handler is |
| 2394 | found, it is an |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2395 | \emph{unhandled exception} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2396 | and execution stops with a message as shown above. |
| 2397 | \end{itemize} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2398 | A \code{try} statement may have more than one except clause, to specify |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2399 | handlers for different exceptions. |
| 2400 | At most one handler will be executed. |
| 2401 | Handlers only handle exceptions that occur in the corresponding try |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2402 | clause, not in other handlers of the same \code{try} statement. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2403 | An except clause may name multiple exceptions as a parenthesized list, |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2404 | e.g.: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2405 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2406 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2407 | ... except (RuntimeError, TypeError, NameError): |
| 2408 | ... pass |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2409 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2410 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2411 | The last except clause may omit the exception name(s), to serve as a |
| 2412 | wildcard. |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2413 | Use this with extreme caution, since it is easy to mask a real |
| 2414 | programming error in this way! |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2415 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2416 | The \verb\try...except\ statement has an optional \verb\else\ clause, |
| 2417 | which must follow all \verb\except\ clauses. It is useful to place |
| 2418 | code that must be executed if the \verb\try\ clause does not raise an |
| 2419 | exception. For example: |
| 2420 | |
| 2421 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2422 | for arg in sys.argv: |
| 2423 | try: |
| 2424 | f = open(arg, 'r') |
| 2425 | except IOError: |
| 2426 | print 'cannot open', arg |
| 2427 | else: |
| 2428 | print arg, 'has', len(f.readlines()), 'lines' |
| 2429 | f.close() |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2430 | \end{verbatim} |
| 2431 | |
| 2432 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2433 | When an exception occurs, it may have an associated value, also known as |
| 2434 | the exceptions's |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2435 | \emph{argument}. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2436 | The presence and type of the argument depend on the exception type. |
| 2437 | For exception types which have an argument, the except clause may |
| 2438 | specify a variable after the exception name (or list) to receive the |
| 2439 | argument's value, as follows: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2440 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2441 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2442 | >>> try: |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 2443 | ... spam() |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2444 | ... except NameError, x: |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2445 | ... print 'name', x, 'undefined' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2446 | ... |
Guido van Rossum | e5f8b60 | 1995-01-04 19:12:49 +0000 | [diff] [blame] | 2447 | name spam undefined |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2448 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2449 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2450 | % |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2451 | If an exception has an argument, it is printed as the last part |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2452 | (`detail') of the message for unhandled exceptions. |
| 2453 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2454 | Exception handlers don't just handle exceptions if they occur |
| 2455 | immediately in the try clause, but also if they occur inside functions |
| 2456 | that are called (even indirectly) in the try clause. |
| 2457 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2458 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2459 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2460 | >>> def this_fails(): |
| 2461 | ... x = 1/0 |
| 2462 | ... |
| 2463 | >>> try: |
| 2464 | ... this_fails() |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2465 | ... except ZeroDivisionError, detail: |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2466 | ... print 'Handling run-time error:', detail |
| 2467 | ... |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2468 | Handling run-time error: integer division or modulo |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2469 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2470 | \end{verbatim}\ecode |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2471 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2472 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2473 | \section{Raising Exceptions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2474 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2475 | The \code{raise} statement allows the programmer to force a specified |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2476 | exception to occur. |
| 2477 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2478 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2479 | \bcode\begin{verbatim} |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2480 | >>> raise NameError, 'HiThere' |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2481 | Traceback (innermost last): |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2482 | File "<stdin>", line 1 |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2483 | NameError: HiThere |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2484 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2485 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2486 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2487 | The first argument to \code{raise} names the exception to be raised. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2488 | The optional second argument specifies the exception's argument. |
| 2489 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2490 | % |
| 2491 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2492 | \section{User-defined Exceptions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2493 | |
| 2494 | Programs may name their own exceptions by assigning a string to a |
| 2495 | variable. |
| 2496 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2497 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2498 | \bcode\begin{verbatim} |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2499 | >>> my_exc = 'my_exc' |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2500 | >>> try: |
| 2501 | ... raise my_exc, 2*2 |
| 2502 | ... except my_exc, val: |
Guido van Rossum | 67fa160 | 1991-04-23 14:14:57 +0000 | [diff] [blame] | 2503 | ... print 'My exception occurred, value:', val |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2504 | ... |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2505 | My exception occurred, value: 4 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2506 | >>> raise my_exc, 1 |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2507 | Traceback (innermost last): |
| 2508 | File "<stdin>", line 1 |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2509 | my_exc: 1 |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2510 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2511 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2512 | % |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2513 | Many standard modules use this to report errors that may occur in |
| 2514 | functions they define. |
| 2515 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2516 | % |
| 2517 | |
Guido van Rossum | 6fc178f | 1991-08-16 09:13:42 +0000 | [diff] [blame] | 2518 | \section{Defining Clean-up Actions} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2519 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2520 | The \code{try} statement has another optional clause which is intended to |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2521 | define clean-up actions that must be executed under all circumstances. |
| 2522 | For example: |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2523 | |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2524 | \bcode\begin{verbatim} |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2525 | >>> try: |
| 2526 | ... raise KeyboardInterrupt |
| 2527 | ... finally: |
| 2528 | ... print 'Goodbye, world!' |
| 2529 | ... |
| 2530 | Goodbye, world! |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2531 | Traceback (innermost last): |
Guido van Rossum | 2292b8e | 1991-01-23 16:31:24 +0000 | [diff] [blame] | 2532 | File "<stdin>", line 2 |
Guido van Rossum | b2c6556 | 1993-05-12 08:53:36 +0000 | [diff] [blame] | 2533 | KeyboardInterrupt |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2534 | >>> |
Guido van Rossum | 5ce78f1 | 1991-01-25 13:27:18 +0000 | [diff] [blame] | 2535 | \end{verbatim}\ecode |
Guido van Rossum | a8d754e | 1992-01-07 16:44:35 +0000 | [diff] [blame] | 2536 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2537 | A \code{finally} clause is executed whether or not an exception has |
| 2538 | occurred in the \code{try} clause. When an exception has occurred, it |
| 2539 | is re-raised after the \code{finally} clause is executed. The |
| 2540 | \code{finally} clause is also executed ``on the way out'' when the |
| 2541 | \code{try} statement is left via a \code{break} or \code{return} |
Guido van Rossum | da8c3fd | 1992-08-09 13:55:25 +0000 | [diff] [blame] | 2542 | statement. |
| 2543 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2544 | A \code{try} statement must either have one or more \code{except} |
| 2545 | clauses or one \code{finally} clause, but not both. |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 2546 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2547 | \chapter{Classes} |
| 2548 | |
| 2549 | Python's class mechanism adds classes to the language with a minimum |
| 2550 | of new syntax and semantics. It is a mixture of the class mechanisms |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2551 | found in \Cpp{} and Modula-3. As is true for modules, classes in Python |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2552 | do not put an absolute barrier between definition and user, but rather |
| 2553 | rely on the politeness of the user not to ``break into the |
| 2554 | definition.'' The most important features of classes are retained |
| 2555 | with full power, however: the class inheritance mechanism allows |
| 2556 | multiple base classes, a derived class can override any methods of its |
| 2557 | base class(es), a method can call the method of a base class with the |
| 2558 | same name. Objects can contain an arbitrary amount of private data. |
| 2559 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2560 | In \Cpp{} terminology, all class members (including the data members) are |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2561 | \emph{public}, and all member functions are \emph{virtual}. There are |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2562 | no special constructors or destructors. As in Modula-3, there are no |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2563 | shorthands for referencing the object's members from its methods: the |
| 2564 | method function is declared with an explicit first argument |
| 2565 | representing the object, which is provided implicitly by the call. As |
| 2566 | in Smalltalk, classes themselves are objects, albeit in the wider |
| 2567 | sense of the word: in Python, all data types are objects. This |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2568 | provides semantics for importing and renaming. But, just like in \Cpp{} |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2569 | or Modula-3, built-in types cannot be used as base classes for |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2570 | extension by the user. Also, like in \Cpp{} but unlike in Modula-3, most |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2571 | built-in operators with special syntax (arithmetic operators, |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2572 | subscripting etc.) can be redefined for class members. |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2573 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2574 | \section{A word about terminology} |
| 2575 | |
| 2576 | Lacking universally accepted terminology to talk about classes, I'll |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2577 | make occasional use of Smalltalk and \Cpp{} terms. (I'd use Modula-3 |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2578 | terms, since its object-oriented semantics are closer to those of |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2579 | Python than \Cpp{}, but I expect that few readers have heard of it...) |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2580 | |
| 2581 | I also have to warn you that there's a terminological pitfall for |
| 2582 | object-oriented readers: the word ``object'' in Python does not |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2583 | necessarily mean a class instance. Like \Cpp{} and Modula-3, and unlike |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2584 | Smalltalk, not all types in Python are classes: the basic built-in |
| 2585 | types like integers and lists aren't, and even somewhat more exotic |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2586 | types like files aren't. However, \emph{all} Python types share a little |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2587 | bit of common semantics that is best described by using the word |
| 2588 | object. |
| 2589 | |
| 2590 | Objects have individuality, and multiple names (in multiple scopes) |
| 2591 | can be bound to the same object. This is known as aliasing in other |
| 2592 | languages. This is usually not appreciated on a first glance at |
| 2593 | Python, and can be safely ignored when dealing with immutable basic |
| 2594 | types (numbers, strings, tuples). However, aliasing has an |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2595 | (intended!) effect on the semantics of Python code involving mutable |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2596 | objects such as lists, dictionaries, and most types representing |
| 2597 | entities outside the program (files, windows, etc.). This is usually |
| 2598 | used to the benefit of the program, since aliases behave like pointers |
| 2599 | in some respects. For example, passing an object is cheap since only |
| 2600 | a pointer is passed by the implementation; and if a function modifies |
| 2601 | an object passed as an argument, the caller will see the change --- this |
| 2602 | obviates the need for two different argument passing mechanisms as in |
| 2603 | Pascal. |
| 2604 | |
| 2605 | |
| 2606 | \section{Python scopes and name spaces} |
| 2607 | |
| 2608 | Before introducing classes, I first have to tell you something about |
| 2609 | Python's scope rules. Class definitions play some neat tricks with |
| 2610 | name spaces, and you need to know how scopes and name spaces work to |
| 2611 | fully understand what's going on. Incidentally, knowledge about this |
| 2612 | subject is useful for any advanced Python programmer. |
| 2613 | |
| 2614 | Let's begin with some definitions. |
| 2615 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2616 | A \emph{name space} is a mapping from names to objects. Most name |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2617 | spaces are currently implemented as Python dictionaries, but that's |
| 2618 | normally not noticeable in any way (except for performance), and it |
| 2619 | may change in the future. Examples of name spaces are: the set of |
| 2620 | built-in names (functions such as \verb\abs()\, and built-in exception |
| 2621 | names); the global names in a module; and the local names in a |
| 2622 | function invocation. In a sense the set of attributes of an object |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 2623 | also form a name space. The important thing to know about name |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2624 | spaces is that there is absolutely no relation between names in |
| 2625 | different name spaces; for instance, two different modules may both |
| 2626 | define a function ``maximize'' without confusion --- users of the |
| 2627 | modules must prefix it with the module name. |
| 2628 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2629 | By the way, I use the word \emph{attribute} for any name following a |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2630 | dot --- for example, in the expression \verb\z.real\, \verb\real\ is |
| 2631 | an attribute of the object \verb\z\. Strictly speaking, references to |
| 2632 | names in modules are attribute references: in the expression |
| 2633 | \verb\modname.funcname\, \verb\modname\ is a module object and |
| 2634 | \verb\funcname\ is an attribute of it. In this case there happens to |
| 2635 | be a straightforward mapping between the module's attributes and the |
| 2636 | global names defined in the module: they share the same name space!% |
| 2637 | \footnote{ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2638 | Except for one thing. Module objects have a secret read-only |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2639 | attribute called \code{__dict__} which returns the dictionary |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2640 | used to implement the module's name space; the name |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2641 | \code{__dict__} is an attribute but not a global name. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2642 | Obviously, using this violates the abstraction of name space |
| 2643 | implementation, and should be restricted to things like |
| 2644 | post-mortem debuggers... |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2645 | } |
| 2646 | |
| 2647 | Attributes may be read-only or writable. In the latter case, |
| 2648 | assignment to attributes is possible. Module attributes are writable: |
| 2649 | you can write \verb\modname.the_answer = 42\. Writable attributes may |
| 2650 | also be deleted with the del statement, e.g. |
| 2651 | \verb\del modname.the_answer\. |
| 2652 | |
| 2653 | Name spaces are created at different moments and have different |
| 2654 | lifetimes. The name space containing the built-in names is created |
| 2655 | when the Python interpreter starts up, and is never deleted. The |
| 2656 | global name space for a module is created when the module definition |
| 2657 | is read in; normally, module name spaces also last until the |
| 2658 | interpreter quits. The statements executed by the top-level |
| 2659 | invocation of the interpreter, either read from a script file or |
| 2660 | interactively, are considered part of a module called \verb\__main__\, |
| 2661 | so they have their own global name space. (The built-in names |
Guido van Rossum | 4bd023f | 1993-10-27 13:49:20 +0000 | [diff] [blame] | 2662 | actually also live in a module; this is called \verb\__builtin__\.) |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2663 | |
| 2664 | The local name space for a function is created when the function is |
| 2665 | called, and deleted when the function returns or raises an exception |
| 2666 | that is not handled within the function. (Actually, forgetting would |
| 2667 | be a better way to describe what actually happens.) Of course, |
| 2668 | recursive invocations each have their own local name space. |
| 2669 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2670 | A \emph{scope} is a textual region of a Python program where a name space |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2671 | is directly accessible. ``Directly accessible'' here means that an |
| 2672 | unqualified reference to a name attempts to find the name in the name |
| 2673 | space. |
| 2674 | |
| 2675 | Although scopes are determined statically, they are used dynamically. |
| 2676 | At any time during execution, exactly three nested scopes are in use |
| 2677 | (i.e., exactly three name spaces are directly accessible): the |
| 2678 | innermost scope, which is searched first, contains the local names, |
| 2679 | the middle scope, searched next, contains the current module's global |
| 2680 | names, and the outermost scope (searched last) is the name space |
| 2681 | containing built-in names. |
| 2682 | |
| 2683 | Usually, the local scope references the local names of the (textually) |
Guido van Rossum | 96628a9 | 1995-04-10 11:34:00 +0000 | [diff] [blame] | 2684 | current function. Outside of functions, the local scope references |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2685 | the same name space as the global scope: the module's name space. |
| 2686 | Class definitions place yet another name space in the local scope. |
| 2687 | |
| 2688 | It is important to realize that scopes are determined textually: the |
| 2689 | global scope of a function defined in a module is that module's name |
| 2690 | space, no matter from where or by what alias the function is called. |
| 2691 | On the other hand, the actual search for names is done dynamically, at |
Guido van Rossum | 96628a9 | 1995-04-10 11:34:00 +0000 | [diff] [blame] | 2692 | run time --- however, the language definition is evolving towards |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2693 | static name resolution, at ``compile'' time, so don't rely on dynamic |
| 2694 | name resolution! (In fact, local variables are already determined |
| 2695 | statically.) |
| 2696 | |
| 2697 | A special quirk of Python is that assignments always go into the |
| 2698 | innermost scope. Assignments do not copy data --- they just |
| 2699 | bind names to objects. The same is true for deletions: the statement |
| 2700 | \verb\del x\ removes the binding of x from the name space referenced by the |
| 2701 | local scope. In fact, all operations that introduce new names use the |
| 2702 | local scope: in particular, import statements and function definitions |
| 2703 | bind the module or function name in the local scope. (The |
| 2704 | \verb\global\ statement can be used to indicate that particular |
| 2705 | variables live in the global scope.) |
| 2706 | |
| 2707 | |
| 2708 | \section{A first look at classes} |
| 2709 | |
| 2710 | Classes introduce a little bit of new syntax, three new object types, |
| 2711 | and some new semantics. |
| 2712 | |
| 2713 | |
| 2714 | \subsection{Class definition syntax} |
| 2715 | |
| 2716 | The simplest form of class definition looks like this: |
| 2717 | |
| 2718 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2719 | class ClassName: |
| 2720 | <statement-1> |
| 2721 | . |
| 2722 | . |
| 2723 | . |
| 2724 | <statement-N> |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2725 | \end{verbatim} |
| 2726 | |
| 2727 | Class definitions, like function definitions (\verb\def\ statements) |
| 2728 | must be executed before they have any effect. (You could conceivably |
| 2729 | place a class definition in a branch of an \verb\if\ statement, or |
| 2730 | inside a function.) |
| 2731 | |
| 2732 | In practice, the statements inside a class definition will usually be |
| 2733 | function definitions, but other statements are allowed, and sometimes |
| 2734 | useful --- we'll come back to this later. The function definitions |
| 2735 | inside a class normally have a peculiar form of argument list, |
| 2736 | dictated by the calling conventions for methods --- again, this is |
| 2737 | explained later. |
| 2738 | |
| 2739 | When a class definition is entered, a new name space is created, and |
| 2740 | used as the local scope --- thus, all assignments to local variables |
| 2741 | go into this new name space. In particular, function definitions bind |
| 2742 | the name of the new function here. |
| 2743 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2744 | When a class definition is left normally (via the end), a \emph{class |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2745 | object} is created. This is basically a wrapper around the contents |
| 2746 | of the name space created by the class definition; we'll learn more |
| 2747 | about class objects in the next section. The original local scope |
| 2748 | (the one in effect just before the class definitions was entered) is |
| 2749 | reinstated, and the class object is bound here to class name given in |
| 2750 | the class definition header (ClassName in the example). |
| 2751 | |
| 2752 | |
| 2753 | \subsection{Class objects} |
| 2754 | |
| 2755 | Class objects support two kinds of operations: attribute references |
| 2756 | and instantiation. |
| 2757 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2758 | \emph{Attribute references} use the standard syntax used for all |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2759 | attribute references in Python: \verb\obj.name\. Valid attribute |
| 2760 | names are all the names that were in the class's name space when the |
| 2761 | class object was created. So, if the class definition looked like |
| 2762 | this: |
| 2763 | |
| 2764 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2765 | class MyClass: |
| 2766 | "A simple example class" |
| 2767 | i = 12345 |
| 2768 | def f(x): |
| 2769 | return 'hello world' |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2770 | \end{verbatim} |
| 2771 | |
| 2772 | then \verb\MyClass.i\ and \verb\MyClass.f\ are valid attribute |
| 2773 | references, returning an integer and a function object, respectively. |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 2774 | Class attributes can also be assigned to, so you can change the value |
| 2775 | of \verb\MyClass.i\ by assignment. \verb\__doc__\ is also a valid |
| 2776 | attribute that's read-only, returning the docstring belonging to |
| 2777 | the class: \verb\"A simple example class"\). |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2778 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2779 | Class \emph{instantiation} uses function notation. Just pretend that |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2780 | the class object is a parameterless function that returns a new |
| 2781 | instance of the class. For example, (assuming the above class): |
| 2782 | |
| 2783 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2784 | x = MyClass() |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2785 | \end{verbatim} |
| 2786 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2787 | creates a new \emph{instance} of the class and assigns this object to |
| 2788 | the local variable \code{x}. |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2789 | |
| 2790 | |
| 2791 | \subsection{Instance objects} |
| 2792 | |
| 2793 | Now what can we do with instance objects? The only operations |
| 2794 | understood by instance objects are attribute references. There are |
| 2795 | two kinds of valid attribute names. |
| 2796 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2797 | The first I'll call \emph{data attributes}. These correspond to |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 2798 | ``instance variables'' in Smalltalk, and to ``data members'' in \Cpp{}. |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2799 | Data attributes need not be declared; like local variables, they |
| 2800 | spring into existence when they are first assigned to. For example, |
| 2801 | if \verb\x\ in the instance of \verb\MyClass\ created above, the |
| 2802 | following piece of code will print the value 16, without leaving a |
| 2803 | trace: |
| 2804 | |
| 2805 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2806 | x.counter = 1 |
| 2807 | while x.counter < 10: |
| 2808 | x.counter = x.counter * 2 |
| 2809 | print x.counter |
| 2810 | del x.counter |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2811 | \end{verbatim} |
| 2812 | |
| 2813 | The second kind of attribute references understood by instance objects |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2814 | are \emph{methods}. A method is a function that ``belongs to'' an |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2815 | object. (In Python, the term method is not unique to class instances: |
| 2816 | other object types can have methods as well, e.g., list objects have |
| 2817 | methods called append, insert, remove, sort, and so on. However, |
| 2818 | below, we'll use the term method exclusively to mean methods of class |
| 2819 | instance objects, unless explicitly stated otherwise.) |
| 2820 | |
| 2821 | Valid method names of an instance object depend on its class. By |
| 2822 | definition, all attributes of a class that are (user-defined) function |
| 2823 | objects define corresponding methods of its instances. So in our |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2824 | example, \code{x.f} is a valid method reference, since |
| 2825 | \code{MyClass.f} is a function, but \code{x.i} is not, since |
| 2826 | \code{MyClass.i} is not. But \code{x.f} is not the |
| 2827 | same thing as \verb\MyClass.f\ --- it is a \emph{method object}, not a |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2828 | function object. |
| 2829 | |
| 2830 | |
| 2831 | \subsection{Method objects} |
| 2832 | |
| 2833 | Usually, a method is called immediately, e.g.: |
| 2834 | |
| 2835 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2836 | x.f() |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2837 | \end{verbatim} |
| 2838 | |
| 2839 | In our example, this will return the string \verb\'hello world'\. |
| 2840 | However, it is not necessary to call a method right away: \verb\x.f\ |
| 2841 | is a method object, and can be stored away and called at a later |
| 2842 | moment, for example: |
| 2843 | |
| 2844 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2845 | xf = x.f |
| 2846 | while 1: |
| 2847 | print xf() |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2848 | \end{verbatim} |
| 2849 | |
| 2850 | will continue to print \verb\hello world\ until the end of time. |
| 2851 | |
| 2852 | What exactly happens when a method is called? You may have noticed |
| 2853 | that \verb\x.f()\ was called without an argument above, even though |
| 2854 | the function definition for \verb\f\ specified an argument. What |
| 2855 | happened to the argument? Surely Python raises an exception when a |
| 2856 | function that requires an argument is called without any --- even if |
| 2857 | the argument isn't actually used... |
| 2858 | |
| 2859 | Actually, you may have guessed the answer: the special thing about |
| 2860 | methods is that the object is passed as the first argument of the |
| 2861 | function. In our example, the call \verb\x.f()\ is exactly equivalent |
| 2862 | to \verb\MyClass.f(x)\. In general, calling a method with a list of |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2863 | \var{n} arguments is equivalent to calling the corresponding function |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2864 | with an argument list that is created by inserting the method's object |
| 2865 | before the first argument. |
| 2866 | |
| 2867 | If you still don't understand how methods work, a look at the |
| 2868 | implementation can perhaps clarify matters. When an instance |
| 2869 | attribute is referenced that isn't a data attribute, its class is |
| 2870 | searched. If the name denotes a valid class attribute that is a |
| 2871 | function object, a method object is created by packing (pointers to) |
| 2872 | the instance object and the function object just found together in an |
| 2873 | abstract object: this is the method object. When the method object is |
| 2874 | called with an argument list, it is unpacked again, a new argument |
| 2875 | list is constructed from the instance object and the original argument |
| 2876 | list, and the function object is called with this new argument list. |
| 2877 | |
| 2878 | |
| 2879 | \section{Random remarks} |
| 2880 | |
| 2881 | |
| 2882 | [These should perhaps be placed more carefully...] |
| 2883 | |
| 2884 | |
| 2885 | Data attributes override method attributes with the same name; to |
| 2886 | avoid accidental name conflicts, which may cause hard-to-find bugs in |
| 2887 | large programs, it is wise to use some kind of convention that |
| 2888 | minimizes the chance of conflicts, e.g., capitalize method names, |
| 2889 | prefix data attribute names with a small unique string (perhaps just |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2890 | an underscore), or use verbs for methods and nouns for data attributes. |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2891 | |
| 2892 | |
| 2893 | Data attributes may be referenced by methods as well as by ordinary |
| 2894 | users (``clients'') of an object. In other words, classes are not |
| 2895 | usable to implement pure abstract data types. In fact, nothing in |
| 2896 | Python makes it possible to enforce data hiding --- it is all based |
| 2897 | upon convention. (On the other hand, the Python implementation, |
| 2898 | written in C, can completely hide implementation details and control |
| 2899 | access to an object if necessary; this can be used by extensions to |
| 2900 | Python written in C.) |
| 2901 | |
| 2902 | |
| 2903 | Clients should use data attributes with care --- clients may mess up |
| 2904 | invariants maintained by the methods by stamping on their data |
| 2905 | attributes. Note that clients may add data attributes of their own to |
| 2906 | an instance object without affecting the validity of the methods, as |
| 2907 | long as name conflicts are avoided --- again, a naming convention can |
| 2908 | save a lot of headaches here. |
| 2909 | |
| 2910 | |
| 2911 | There is no shorthand for referencing data attributes (or other |
| 2912 | methods!) from within methods. I find that this actually increases |
| 2913 | the readability of methods: there is no chance of confusing local |
| 2914 | variables and instance variables when glancing through a method. |
| 2915 | |
| 2916 | |
| 2917 | Conventionally, the first argument of methods is often called |
| 2918 | \verb\self\. This is nothing more than a convention: the name |
| 2919 | \verb\self\ has absolutely no special meaning to Python. (Note, |
| 2920 | however, that by not following the convention your code may be less |
| 2921 | readable by other Python programmers, and it is also conceivable that |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2922 | a \emph{class browser} program be written which relies upon such a |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2923 | convention.) |
| 2924 | |
| 2925 | |
| 2926 | Any function object that is a class attribute defines a method for |
| 2927 | instances of that class. It is not necessary that the function |
| 2928 | definition is textually enclosed in the class definition: assigning a |
| 2929 | function object to a local variable in the class is also ok. For |
| 2930 | example: |
| 2931 | |
| 2932 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2933 | # Function defined outside the class |
| 2934 | def f1(self, x, y): |
| 2935 | return min(x, x+y) |
| 2936 | |
| 2937 | class C: |
| 2938 | f = f1 |
| 2939 | def g(self): |
| 2940 | return 'hello world' |
| 2941 | h = g |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2942 | \end{verbatim} |
| 2943 | |
| 2944 | Now \verb\f\, \verb\g\ and \verb\h\ are all attributes of class |
| 2945 | \verb\C\ that refer to function objects, and consequently they are all |
| 2946 | methods of instances of \verb\C\ --- \verb\h\ being exactly equivalent |
| 2947 | to \verb\g\. Note that this practice usually only serves to confuse |
| 2948 | the reader of a program. |
| 2949 | |
| 2950 | |
| 2951 | Methods may call other methods by using method attributes of the |
| 2952 | \verb\self\ argument, e.g.: |
| 2953 | |
| 2954 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2955 | class Bag: |
| 2956 | def empty(self): |
| 2957 | self.data = [] |
| 2958 | def add(self, x): |
| 2959 | self.data.append(x) |
| 2960 | def addtwice(self, x): |
| 2961 | self.add(x) |
| 2962 | self.add(x) |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2963 | \end{verbatim} |
| 2964 | |
| 2965 | |
| 2966 | The instantiation operation (``calling'' a class object) creates an |
| 2967 | empty object. Many classes like to create objects in a known initial |
Guido van Rossum | ca3f6c8 | 1994-10-06 14:08:53 +0000 | [diff] [blame] | 2968 | state. Therefore a class may define a special method named |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2969 | \code{__init__()}, like this: |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2970 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2971 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2972 | def __init__(self): |
| 2973 | self.empty() |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2974 | \end{verbatim} |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2975 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2976 | When a class defines an \code{__init__()} method, class instantiation |
| 2977 | automatically invokes \code{__init__()} for the newly-created class |
| 2978 | instance. So in the \code{Bag} example, a new and initialized instance |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2979 | can be obtained by: |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 2980 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2981 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 2982 | x = Bag() |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 2983 | \end{verbatim} |
| 2984 | |
| 2985 | Of course, the \verb\__init__\ method may have arguments for greater |
| 2986 | flexibility. In that case, arguments given to the class instantiation |
| 2987 | operator are passed on to \verb\__init__\. For example, |
| 2988 | |
| 2989 | \bcode\begin{verbatim} |
| 2990 | >>> class Complex: |
| 2991 | ... def __init__(self, realpart, imagpart): |
| 2992 | ... self.r = realpart |
| 2993 | ... self.i = imagpart |
| 2994 | ... |
| 2995 | >>> x = Complex(3.0,-4.5) |
| 2996 | >>> x.r, x.i |
| 2997 | (3.0, -4.5) |
| 2998 | >>> |
| 2999 | \end{verbatim}\ecode |
| 3000 | % |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3001 | Methods may reference global names in the same way as ordinary |
| 3002 | functions. The global scope associated with a method is the module |
| 3003 | containing the class definition. (The class itself is never used as a |
| 3004 | global scope!) While one rarely encounters a good reason for using |
| 3005 | global data in a method, there are many legitimate uses of the global |
| 3006 | scope: for one thing, functions and modules imported into the global |
| 3007 | scope can be used by methods, as well as functions and classes defined |
| 3008 | in it. Usually, the class containing the method is itself defined in |
| 3009 | this global scope, and in the next section we'll find some good |
| 3010 | reasons why a method would want to reference its own class! |
| 3011 | |
| 3012 | |
| 3013 | \section{Inheritance} |
| 3014 | |
| 3015 | Of course, a language feature would not be worthy of the name ``class'' |
| 3016 | without supporting inheritance. The syntax for a derived class |
| 3017 | definition looks as follows: |
| 3018 | |
| 3019 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3020 | class DerivedClassName(BaseClassName): |
| 3021 | <statement-1> |
| 3022 | . |
| 3023 | . |
| 3024 | . |
| 3025 | <statement-N> |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3026 | \end{verbatim} |
| 3027 | |
| 3028 | The name \verb\BaseClassName\ must be defined in a scope containing |
| 3029 | the derived class definition. Instead of a base class name, an |
| 3030 | expression is also allowed. This is useful when the base class is |
| 3031 | defined in another module, e.g., |
| 3032 | |
| 3033 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3034 | class DerivedClassName(modname.BaseClassName): |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3035 | \end{verbatim} |
| 3036 | |
| 3037 | Execution of a derived class definition proceeds the same as for a |
| 3038 | base class. When the class object is constructed, the base class is |
| 3039 | remembered. This is used for resolving attribute references: if a |
| 3040 | requested attribute is not found in the class, it is searched in the |
| 3041 | base class. This rule is applied recursively if the base class itself |
| 3042 | is derived from some other class. |
| 3043 | |
| 3044 | There's nothing special about instantiation of derived classes: |
| 3045 | \verb\DerivedClassName()\ creates a new instance of the class. Method |
| 3046 | references are resolved as follows: the corresponding class attribute |
| 3047 | is searched, descending down the chain of base classes if necessary, |
| 3048 | and the method reference is valid if this yields a function object. |
| 3049 | |
| 3050 | Derived classes may override methods of their base classes. Because |
| 3051 | methods have no special privileges when calling other methods of the |
| 3052 | same object, a method of a base class that calls another method |
| 3053 | defined in the same base class, may in fact end up calling a method of |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 3054 | a derived class that overrides it. (For \Cpp{} programmers: all methods |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3055 | in Python are ``virtual functions''.) |
| 3056 | |
| 3057 | An overriding method in a derived class may in fact want to extend |
| 3058 | rather than simply replace the base class method of the same name. |
| 3059 | There is a simple way to call the base class method directly: just |
| 3060 | call \verb\BaseClassName.methodname(self, arguments)\. This is |
| 3061 | occasionally useful to clients as well. (Note that this only works if |
| 3062 | the base class is defined or imported directly in the global scope.) |
| 3063 | |
| 3064 | |
| 3065 | \subsection{Multiple inheritance} |
| 3066 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 3067 | Python supports a limited form of multiple inheritance as well. A |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3068 | class definition with multiple base classes looks as follows: |
| 3069 | |
| 3070 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3071 | class DerivedClassName(Base1, Base2, Base3): |
| 3072 | <statement-1> |
| 3073 | . |
| 3074 | . |
| 3075 | . |
| 3076 | <statement-N> |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3077 | \end{verbatim} |
| 3078 | |
| 3079 | The only rule necessary to explain the semantics is the resolution |
| 3080 | rule used for class attribute references. This is depth-first, |
| 3081 | left-to-right. Thus, if an attribute is not found in |
| 3082 | \verb\DerivedClassName\, it is searched in \verb\Base1\, then |
| 3083 | (recursively) in the base classes of \verb\Base1\, and only if it is |
| 3084 | not found there, it is searched in \verb\Base2\, and so on. |
| 3085 | |
Guido van Rossum | 95cd2ef | 1992-12-08 14:37:55 +0000 | [diff] [blame] | 3086 | (To some people breadth first---searching \verb\Base2\ and |
| 3087 | \verb\Base3\ before the base classes of \verb\Base1\---looks more |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3088 | natural. However, this would require you to know whether a particular |
| 3089 | attribute of \verb\Base1\ is actually defined in \verb\Base1\ or in |
| 3090 | one of its base classes before you can figure out the consequences of |
| 3091 | a name conflict with an attribute of \verb\Base2\. The depth-first |
| 3092 | rule makes no differences between direct and inherited attributes of |
| 3093 | \verb\Base1\.) |
| 3094 | |
| 3095 | It is clear that indiscriminate use of multiple inheritance is a |
| 3096 | maintenance nightmare, given the reliance in Python on conventions to |
| 3097 | avoid accidental name conflicts. A well-known problem with multiple |
| 3098 | inheritance is a class derived from two classes that happen to have a |
| 3099 | common base class. While it is easy enough to figure out what happens |
| 3100 | in this case (the instance will have a single copy of ``instance |
| 3101 | variables'' or data attributes used by the common base class), it is |
| 3102 | not clear that these semantics are in any way useful. |
| 3103 | |
| 3104 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3105 | \section{Private variables through name mangling} |
| 3106 | |
| 3107 | There is now limited support for class-private |
| 3108 | identifiers. Any identifier of the form \code{__spam} (at least two |
| 3109 | leading underscores, at most one trailing underscore) is now textually |
| 3110 | replaced with \code{_classname__spam}, where \code{classname} is the |
| 3111 | current class name with leading underscore(s) stripped. This mangling |
| 3112 | is done without regard of the syntactic position of the identifier, so |
| 3113 | it can be used to define class-private instance and class variables, |
| 3114 | methods, as well as globals, and even to store instance variables |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3115 | private to this class on instances of \emph{other} classes. Truncation |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3116 | may occur when the mangled name would be longer than 255 characters. |
| 3117 | Outside classes, or when the class name consists of only underscores, |
| 3118 | no mangling occurs. |
| 3119 | |
| 3120 | Name mangling is intended to give classes an easy way to define |
| 3121 | ``private'' instance variables and methods, without having to worry |
| 3122 | about instance variables defined by derived classes, or mucking with |
| 3123 | instance variables by code outside the class. Note that the mangling |
| 3124 | rules are designed mostly to avoid accidents; it still is possible for |
| 3125 | a determined soul to access or modify a variable that is considered |
| 3126 | private. This can even be useful, e.g. for the debugger, and that's |
| 3127 | one reason why this loophole is not closed. (Buglet: derivation of a |
| 3128 | class with the same name as the base class makes use of private |
| 3129 | variables of the base class possible.) |
| 3130 | |
| 3131 | Notice that code passed to \code{exec}, \code{eval()} or |
| 3132 | \code{evalfile()} does not consider the classname of the invoking |
| 3133 | class to be the current class; this is similar to the effect of the |
| 3134 | \code{global} statement, the effect of which is likewise restricted to |
| 3135 | code that is byte-compiled together. The same restriction applies to |
| 3136 | \code{getattr()}, \code{setattr()} and \code{delattr()}, as well as |
| 3137 | when referencing \code{__dict__} directly. |
| 3138 | |
| 3139 | Here's an example of a class that implements its own |
| 3140 | \code{__getattr__} and \code{__setattr__} methods and stores all |
| 3141 | attributes in a private variable, in a way that works in Python 1.4 as |
| 3142 | well as in previous versions: |
| 3143 | |
| 3144 | \begin{verbatim} |
| 3145 | class VirtualAttributes: |
| 3146 | __vdict = None |
| 3147 | __vdict_name = locals().keys()[0] |
| 3148 | |
| 3149 | def __init__(self): |
| 3150 | self.__dict__[self.__vdict_name] = {} |
| 3151 | |
| 3152 | def __getattr__(self, name): |
| 3153 | return self.__vdict[name] |
| 3154 | |
| 3155 | def __setattr__(self, name, value): |
| 3156 | self.__vdict[name] = value |
| 3157 | \end{verbatim} |
| 3158 | |
| 3159 | %{\em Warning: this is an experimental feature.} To avoid all |
| 3160 | %potential problems, refrain from using identifiers starting with |
| 3161 | %double underscore except for predefined uses like \code{__init__}. To |
| 3162 | %use private names while maintaining future compatibility: refrain from |
| 3163 | %using the same private name in classes related via subclassing; avoid |
| 3164 | %explicit (manual) mangling/unmangling; and assume that at some point |
| 3165 | %in the future, leading double underscore will revert to being just a |
| 3166 | %naming convention. Discussion on extensive compile-time declarations |
| 3167 | %are currently underway, and it is impossible to predict what solution |
| 3168 | %will eventually be chosen for private names. Double leading |
| 3169 | %underscore is still a candidate, of course --- just not the only one. |
| 3170 | %It is placed in the distribution in the belief that it is useful, and |
| 3171 | %so that widespread experience with its use can be gained. It will not |
| 3172 | %be removed without providing a better solution and a migration path. |
| 3173 | |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3174 | \section{Odds and ends} |
| 3175 | |
| 3176 | Sometimes it is useful to have a data type similar to the Pascal |
| 3177 | ``record'' or C ``struct'', bundling together a couple of named data |
| 3178 | items. An empty class definition will do nicely, e.g.: |
| 3179 | |
| 3180 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3181 | class Employee: |
| 3182 | pass |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3183 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3184 | john = Employee() # Create an empty employee record |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3185 | |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3186 | # Fill the fields of the record |
| 3187 | john.name = 'John Doe' |
| 3188 | john.dept = 'computer lab' |
| 3189 | john.salary = 1000 |
Guido van Rossum | 5e0759d | 1992-08-07 16:06:24 +0000 | [diff] [blame] | 3190 | \end{verbatim} |
| 3191 | |
| 3192 | |
| 3193 | A piece of Python code that expects a particular abstract data type |
| 3194 | can often be passed a class that emulates the methods of that data |
| 3195 | type instead. For instance, if you have a function that formats some |
| 3196 | data from a file object, you can define a class with methods |
| 3197 | \verb\read()\ and \verb\readline()\ that gets the data from a string |
| 3198 | buffer instead, and pass it as an argument. (Unfortunately, this |
| 3199 | technique has its limitations: a class can't define operations that |
| 3200 | are accessed by special syntax such as sequence subscripting or |
| 3201 | arithmetic operators, and assigning such a ``pseudo-file'' to |
| 3202 | \verb\sys.stdin\ will not cause the interpreter to read further input |
| 3203 | from it.) |
| 3204 | |
| 3205 | |
| 3206 | Instance method objects have attributes, too: \verb\m.im_self\ is the |
| 3207 | object of which the method is an instance, and \verb\m.im_func\ is the |
| 3208 | function object corresponding to the method. |
| 3209 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3210 | \subsection{Exceptions Can Be Classes} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3211 | |
| 3212 | User-defined exceptions are no longer limited to being string objects |
| 3213 | --- they can be identified by classes as well. Using this mechanism it |
| 3214 | is possible to create extensible hierarchies of exceptions. |
| 3215 | |
| 3216 | There are two new valid (semantic) forms for the raise statement: |
| 3217 | |
| 3218 | \begin{verbatim} |
| 3219 | raise Class, instance |
| 3220 | |
| 3221 | raise instance |
| 3222 | \end{verbatim} |
| 3223 | |
| 3224 | In the first form, \code{instance} must be an instance of \code{Class} |
| 3225 | or of a class derived from it. The second form is a shorthand for |
| 3226 | |
| 3227 | \begin{verbatim} |
| 3228 | raise instance.__class__, instance |
| 3229 | \end{verbatim} |
| 3230 | |
| 3231 | An except clause may list classes as well as string objects. A class |
| 3232 | in an except clause is compatible with an exception if it is the same |
| 3233 | class or a base class thereof (but not the other way around --- an |
| 3234 | except clause listing a derived class is not compatible with a base |
| 3235 | class). For example, the following code will print B, C, D in that |
| 3236 | order: |
| 3237 | |
| 3238 | \begin{verbatim} |
| 3239 | class B: |
| 3240 | pass |
| 3241 | class C(B): |
| 3242 | pass |
| 3243 | class D(C): |
| 3244 | pass |
| 3245 | |
| 3246 | for c in [B, C, D]: |
| 3247 | try: |
| 3248 | raise c() |
| 3249 | except D: |
| 3250 | print "D" |
| 3251 | except C: |
| 3252 | print "C" |
| 3253 | except B: |
| 3254 | print "B" |
| 3255 | \end{verbatim} |
| 3256 | |
| 3257 | Note that if the except clauses were reversed (with ``\code{except B}'' |
| 3258 | first), it would have printed B, B, B --- the first matching except |
| 3259 | clause is triggered. |
| 3260 | |
| 3261 | When an error message is printed for an unhandled exception which is a |
| 3262 | class, the class name is printed, then a colon and a space, and |
| 3263 | finally the instance converted to a string using the built-in function |
| 3264 | \code{str()}. |
| 3265 | |
| 3266 | In this release, the built-in exceptions are still strings. |
| 3267 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3268 | \chapter{What Now?} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3269 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3270 | Hopefully reading this tutorial has reinforced your interest in using |
| 3271 | Python. Now what should you do? |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3272 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3273 | You should read, or at least page through, the Library Reference, |
| 3274 | which gives complete (though terse) reference material about types, |
| 3275 | functions, and modules that can save you a lot of time when writing |
| 3276 | Python programs. The standard Python distribution includes a |
| 3277 | \emph{lot} of code in both C and Python; there are modules to read |
| 3278 | Unix mailboxes, retrieve documents via HTTP, generate random numbers, |
| 3279 | parse command-line options, write CGI programs, compress data, and a |
| 3280 | lot more; skimming through the Library Reference will give you an idea |
| 3281 | of what's available. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3282 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3283 | The major Python Web site is \code{http://www.python.org}; it contains |
| 3284 | code, documentation, and pointers to Python-related pages around the |
| 3285 | Web. \code{www.python.org} is mirrored in various places around the |
| 3286 | world, such as Europe, Japan, and Australia; a mirror may be faster |
| 3287 | than the main site, depending on your geographical location. A more |
| 3288 | informal site is \code{http://starship.skyport.net}, which contains a |
| 3289 | bunch of Python-related personal home pages; many people have |
| 3290 | downloadable software here. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3291 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3292 | For Python-related questions and problem reports, you can post to the |
| 3293 | newsgroup \code{comp.lang.python}, or send them to the mailing list at |
| 3294 | \code{python-list@cwi.nl}. The newsgroup and mailing list are |
| 3295 | gatewayed, so messages posted to one will automatically be forwarded |
| 3296 | to the other. There are around 20--30 postings a day, asking (and |
| 3297 | answering) questions, suggesting new features, and announcing new |
| 3298 | modules. But before posting, be sure to check the list of Frequently |
| 3299 | Asked Questions (also called the FAQ), at |
| 3300 | \code{http://www.python.org/doc/FAQ.html}, or look for it in the |
| 3301 | \code{Misc/} directory of the Python source distribution. The FAQ |
| 3302 | answers many of the questions that come up again and again, and may |
| 3303 | already contain the solution for your problem. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3304 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3305 | You can support the Python community by joining the Python Software |
| 3306 | Activity, which runs the python.org web, ftp and email servers, and |
| 3307 | organizes Python workshops. See \code{http://www.python.org/psa/} for |
| 3308 | information on how to join. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3309 | |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3310 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3311 | \chapter{Recent Additions as of Release 1.1} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3312 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3313 | XXX Should the stuff in this chapter be deleted, or can a home be found or it elsewhere in the Tutorial? |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3314 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3315 | \section{Lambda Forms} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3316 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3317 | XXX Where to put this? Or just leave it out? |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3318 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3319 | By popular demand, a few features commonly found in functional |
| 3320 | programming languages and Lisp have been added to Python. With the |
| 3321 | \verb\lambda\ keyword, small anonymous functions can be created. |
| 3322 | Here's a function that returns the sum of its two arguments: |
| 3323 | \verb\lambda a, b: a+b\. Lambda forms can be used wherever function |
| 3324 | objects are required. They are syntactically restricted to a single |
| 3325 | expression. Semantically, they are just syntactic sugar for a normal |
| 3326 | function definition. Like nested function definitions, lambda forms |
| 3327 | cannot reference variables from the containing scope, but this can be |
| 3328 | overcome through the judicious use of default argument values, e.g. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3329 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3330 | \begin{verbatim} |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3331 | def make_incrementor(n): |
| 3332 | return lambda x, incr=n: x+incr |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3333 | \end{verbatim} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3334 | |
| 3335 | \section{Documentation Strings} |
| 3336 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3337 | XXX Where to put this? Or just leave it out? |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3338 | |
| 3339 | There are emerging conventions about the content and formatting of |
| 3340 | documentation strings. |
| 3341 | |
| 3342 | The first line should always be a short, concise summary of the |
| 3343 | object's purpose. For brevity, it should not explicitly state the |
| 3344 | object's name or type, since these are available by other means |
| 3345 | (except if the name happens to be a verb describing a function's |
| 3346 | operation). This line should begin with a capital letter and end with |
| 3347 | a period. |
| 3348 | |
| 3349 | If there are more lines in the documentation string, the second line |
| 3350 | should be blank, visually separating the summary from the rest of the |
| 3351 | description. The following lines should be one of more of paragraphs |
| 3352 | describing the objects calling conventions, its side effects, etc. |
| 3353 | |
| 3354 | Some people like to copy the Emacs convention of using UPPER CASE for |
| 3355 | function parameters --- this often saves a few words or lines. |
| 3356 | |
| 3357 | The Python parser does not strip indentation from multi-line string |
| 3358 | literals in Python, so tools that process documentation have to strip |
| 3359 | indentation. This is done using the following convention. The first |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3360 | non-blank line \emph{after} the first line of the string determines the |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3361 | amount of indentation for the entire documentation string. (We can't |
| 3362 | use the first line since it is generally adjacent to the string's |
| 3363 | opening quotes so its indentation is not apparent in the string |
| 3364 | literal.) Whitespace ``equivalent'' to this indentation is then |
| 3365 | stripped from the start of all lines of the string. Lines that are |
| 3366 | indented less should not occur, but if they occur all their leading |
| 3367 | whitespace should be stripped. Equivalence of whitespace should be |
| 3368 | tested after expansion of tabs (to 8 spaces, normally). |
| 3369 | |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3370 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3371 | \appendix\chapter{Interactive Input Editing and History Substitution} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3372 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3373 | Some versions of the Python interpreter support editing of the current |
| 3374 | input line and history substitution, similar to facilities found in |
| 3375 | the Korn shell and the GNU Bash shell. This is implemented using the |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3376 | \emph{GNU Readline} library, which supports Emacs-style and vi-style |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3377 | editing. This library has its own documentation which I won't |
| 3378 | duplicate here; however, the basics are easily explained. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3379 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3380 | \subsection{Line Editing} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3381 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3382 | If supported, input line editing is active whenever the interpreter |
| 3383 | prints a primary or secondary prompt. The current line can be edited |
| 3384 | using the conventional Emacs control characters. The most important |
| 3385 | of these are: C-A (Control-A) moves the cursor to the beginning of the |
| 3386 | line, C-E to the end, C-B moves it one position to the left, C-F to |
| 3387 | the right. Backspace erases the character to the left of the cursor, |
| 3388 | C-D the character to its right. C-K kills (erases) the rest of the |
| 3389 | line to the right of the cursor, C-Y yanks back the last killed |
| 3390 | string. C-underscore undoes the last change you made; it can be |
| 3391 | repeated for cumulative effect. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3392 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3393 | \subsection{History Substitution} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3394 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3395 | History substitution works as follows. All non-empty input lines |
| 3396 | issued are saved in a history buffer, and when a new prompt is given |
| 3397 | you are positioned on a new line at the bottom of this buffer. C-P |
| 3398 | moves one line up (back) in the history buffer, C-N moves one down. |
| 3399 | Any line in the history buffer can be edited; an asterisk appears in |
| 3400 | front of the prompt to mark a line as modified. Pressing the Return |
| 3401 | key passes the current line to the interpreter. C-R starts an |
| 3402 | incremental reverse search; C-S starts a forward search. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3403 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3404 | \subsection{Key Bindings} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3405 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3406 | The key bindings and some other parameters of the Readline library can |
| 3407 | be customized by placing commands in an initialization file called |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3408 | \file{\$HOME/.inputrc}. Key bindings have the form |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3409 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3410 | \bcode\begin{verbatim} |
| 3411 | key-name: function-name |
| 3412 | \end{verbatim}\ecode |
| 3413 | % |
| 3414 | or |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3415 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3416 | \bcode\begin{verbatim} |
| 3417 | "string": function-name |
| 3418 | \end{verbatim}\ecode |
| 3419 | % |
| 3420 | and options can be set with |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3421 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3422 | \bcode\begin{verbatim} |
| 3423 | set option-name value |
| 3424 | \end{verbatim}\ecode |
| 3425 | % |
| 3426 | For example: |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3427 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3428 | \bcode\begin{verbatim} |
| 3429 | # I prefer vi-style editing: |
| 3430 | set editing-mode vi |
| 3431 | # Edit using a single line: |
| 3432 | set horizontal-scroll-mode On |
| 3433 | # Rebind some keys: |
| 3434 | Meta-h: backward-kill-word |
| 3435 | "\C-u": universal-argument |
| 3436 | "\C-x\C-r": re-read-init-file |
| 3437 | \end{verbatim}\ecode |
| 3438 | % |
| 3439 | Note that the default binding for TAB in Python is to insert a TAB |
| 3440 | instead of Readline's default filename completion function. If you |
| 3441 | insist, you can override this by putting |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3442 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3443 | \bcode\begin{verbatim} |
| 3444 | TAB: complete |
| 3445 | \end{verbatim}\ecode |
| 3446 | % |
Fred Drake | eee08cd | 1997-12-04 15:43:15 +0000 | [diff] [blame] | 3447 | in your \file{\$HOME/.inputrc}. (Of course, this makes it hard to type |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3448 | indented continuation lines...) |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3449 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3450 | \subsection{Commentary} |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3451 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3452 | This facility is an enormous step forward compared to previous |
| 3453 | versions of the interpreter; however, some wishes are left: It would |
| 3454 | be nice if the proper indentation were suggested on continuation lines |
| 3455 | (the parser knows if an indent token is required next). The |
| 3456 | completion mechanism might use the interpreter's symbol table. A |
| 3457 | command to check (or even suggest) matching parentheses, quotes etc. |
| 3458 | would also be useful. |
Guido van Rossum | 194e57c | 1995-02-15 15:51:38 +0000 | [diff] [blame] | 3459 | |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3460 | XXX Lele Gaifax's readline module, which adds name completion... |
Guido van Rossum | 97662c8 | 1996-08-23 15:35:47 +0000 | [diff] [blame] | 3461 | |
Guido van Rossum | d9bf55d | 1991-01-11 16:35:08 +0000 | [diff] [blame] | 3462 | \end{document} |
Guido van Rossum | 0245569 | 1997-07-17 16:21:52 +0000 | [diff] [blame] | 3463 | |