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