blob: ecc763ef05623e071d1e7e8e899ecfb26bff960e [file] [log] [blame]
Fred Drake7a2f0661998-09-10 18:25:58 +00001\section{Built-in Types \label{types}}
Fred Drake64e3b431998-07-24 13:56:11 +00002
3The following sections describe the standard types that are built into
4the interpreter. These are the numeric types, sequence types, and
5several others, including types themselves. There is no explicit
6Boolean type; use integers instead.
7\indexii{built-in}{types}
8\indexii{Boolean}{type}
9
10Some operations are supported by several object types; in particular,
11all objects can be compared, tested for truth value, and converted to
Fred Drake84538cd1998-11-30 21:51:25 +000012a string (with the \code{`\textrm{\ldots}`} notation). The latter
13conversion is implicitly used when an object is written by the
14\keyword{print}\stindex{print} statement.
Fred Drake64e3b431998-07-24 13:56:11 +000015
16
Fred Drake7a2f0661998-09-10 18:25:58 +000017\subsection{Truth Value Testing \label{truth}}
Fred Drake64e3b431998-07-24 13:56:11 +000018
Fred Drake84538cd1998-11-30 21:51:25 +000019Any object can be tested for truth value, for use in an \keyword{if} or
20\keyword{while} condition or as operand of the Boolean operations below.
Fred Drake64e3b431998-07-24 13:56:11 +000021The following values are considered false:
22\stindex{if}
23\stindex{while}
24\indexii{truth}{value}
25\indexii{Boolean}{operations}
26\index{false}
27
Fred Drake64e3b431998-07-24 13:56:11 +000028\begin{itemize}
29
30\item \code{None}
Fred Drake7a2f0661998-09-10 18:25:58 +000031 \withsubitem{(Built-in object)}{\ttindex{None}}
Fred Drake64e3b431998-07-24 13:56:11 +000032
33\item zero of any numeric type, e.g., \code{0}, \code{0L}, \code{0.0}.
34
35\item any empty sequence, e.g., \code{''}, \code{()}, \code{[]}.
36
37\item any empty mapping, e.g., \code{\{\}}.
38
39\item instances of user-defined classes, if the class defines a
Fred Drake7a2f0661998-09-10 18:25:58 +000040 \method{__nonzero__()} or \method{__len__()} method, when that
Fred Drake64e3b431998-07-24 13:56:11 +000041 method returns zero.
42
43\end{itemize}
44
45All other values are considered true --- so objects of many types are
46always true.
47\index{true}
48
49Operations and built-in functions that have a Boolean result always
50return \code{0} for false and \code{1} for true, unless otherwise
51stated. (Important exception: the Boolean operations
52\samp{or}\opindex{or} and \samp{and}\opindex{and} always return one of
53their operands.)
54
55
Fred Drake7a2f0661998-09-10 18:25:58 +000056\subsection{Boolean Operations \label{boolean}}
Fred Drake64e3b431998-07-24 13:56:11 +000057
58These are the Boolean operations, ordered by ascending priority:
59\indexii{Boolean}{operations}
60
61\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
62 \lineiii{\var{x} or \var{y}}{if \var{x} is false, then \var{y}, else \var{x}}{(1)}
63 \lineiii{\var{x} and \var{y}}{if \var{x} is false, then \var{x}, else \var{y}}{(1)}
64 \hline
65 \lineiii{not \var{x}}{if \var{x} is false, then \code{1}, else \code{0}}{(2)}
66\end{tableiii}
67\opindex{and}
68\opindex{or}
69\opindex{not}
70
71\noindent
72Notes:
73
74\begin{description}
75
76\item[(1)]
77These only evaluate their second argument if needed for their outcome.
78
79\item[(2)]
80\samp{not} has a lower priority than non-Boolean operators, so e.g.
81\code{not a == b} is interpreted as \code{not(a == b)}, and
82\code{a == not b} is a syntax error.
83
84\end{description}
85
86
Fred Drake7a2f0661998-09-10 18:25:58 +000087\subsection{Comparisons \label{comparisons}}
Fred Drake64e3b431998-07-24 13:56:11 +000088
89Comparison operations are supported by all objects. They all have the
90same priority (which is higher than that of the Boolean operations).
91Comparisons can be chained arbitrarily, e.g. \code{x < y <= z} is
92equivalent to \code{x < y and y <= z}, except that \code{y} is
93evaluated only once (but in both cases \code{z} is not evaluated at
94all when \code{x < y} is found to be false).
95\indexii{chaining}{comparisons}
96
97This table summarizes the comparison operations:
98
99\begin{tableiii}{c|l|c}{code}{Operation}{Meaning}{Notes}
100 \lineiii{<}{strictly less than}{}
101 \lineiii{<=}{less than or equal}{}
102 \lineiii{>}{strictly greater than}{}
103 \lineiii{>=}{greater than or equal}{}
104 \lineiii{==}{equal}{}
105 \lineiii{<>}{not equal}{(1)}
106 \lineiii{!=}{not equal}{(1)}
107 \lineiii{is}{object identity}{}
108 \lineiii{is not}{negated object identity}{}
109\end{tableiii}
110\indexii{operator}{comparison}
111\opindex{==} % XXX *All* others have funny characters < ! >
112\opindex{is}
113\opindex{is not}
114
115\noindent
116Notes:
117
118\begin{description}
119
120\item[(1)]
121\code{<>} and \code{!=} are alternate spellings for the same operator.
122(I couldn't choose between \ABC{} and \C{}! :-)
123\index{ABC language@\ABC{} language}
124\index{language!ABC@\ABC{}}
125\indexii{C@\C{}}{language}
126
127\end{description}
128
129Objects of different types, except different numeric types, never
130compare equal; such objects are ordered consistently but arbitrarily
131(so that sorting a heterogeneous array yields a consistent result).
132Furthermore, some types (e.g., windows) support only a degenerate
133notion of comparison where any two objects of that type are unequal.
134Again, such objects are ordered arbitrarily but consistently.
135\indexii{types}{numeric}
136\indexii{objects}{comparing}
137
138(Implementation note: objects of different types except numbers are
139ordered by their type names; objects of the same types that don't
140support proper comparison are ordered by their address.)
141
142Two more operations with the same syntactic priority, \samp{in} and
143\samp{not in}, are supported only by sequence types (below).
144\opindex{in}
145\opindex{not in}
146
147
Fred Drake7a2f0661998-09-10 18:25:58 +0000148\subsection{Numeric Types \label{typesnumeric}}
Fred Drake64e3b431998-07-24 13:56:11 +0000149
150There are four numeric types: \dfn{plain integers}, \dfn{long integers},
151\dfn{floating point numbers}, and \dfn{complex numbers}.
152Plain integers (also just called \dfn{integers})
Fred Drake84538cd1998-11-30 21:51:25 +0000153are implemented using \ctype{long} in \C{}, which gives them at least 32
Fred Drake64e3b431998-07-24 13:56:11 +0000154bits of precision. Long integers have unlimited precision. Floating
Fred Drake84538cd1998-11-30 21:51:25 +0000155point numbers are implemented using \ctype{double} in \C{}. All bets on
Fred Drake64e3b431998-07-24 13:56:11 +0000156their precision are off unless you happen to know the machine you are
157working with.
158\indexii{numeric}{types}
159\indexii{integer}{types}
160\indexii{integer}{type}
161\indexiii{long}{integer}{type}
162\indexii{floating point}{type}
163\indexii{complex number}{type}
164\indexii{C@\C{}}{language}
165
166Complex numbers have a real and imaginary part, which are both
Fred Drake84538cd1998-11-30 21:51:25 +0000167implemented using \ctype{double} in \C{}. To extract these parts from
Fred Drake64e3b431998-07-24 13:56:11 +0000168a complex number \var{z}, use \code{\var{z}.real} and \code{\var{z}.imag}.
169
170Numbers are created by numeric literals or as the result of built-in
171functions and operators. Unadorned integer literals (including hex
172and octal numbers) yield plain integers. Integer literals with an \samp{L}
173or \samp{l} suffix yield long integers
174(\samp{L} is preferred because \samp{1l} looks too much like eleven!).
175Numeric literals containing a decimal point or an exponent sign yield
176floating point numbers. Appending \samp{j} or \samp{J} to a numeric
177literal yields a complex number.
178\indexii{numeric}{literals}
179\indexii{integer}{literals}
180\indexiii{long}{integer}{literals}
181\indexii{floating point}{literals}
182\indexii{complex number}{literals}
183\indexii{hexadecimal}{literals}
184\indexii{octal}{literals}
185
186Python fully supports mixed arithmetic: when a binary arithmetic
187operator has operands of different numeric types, the operand with the
188``smaller'' type is converted to that of the other, where plain
189integer is smaller than long integer is smaller than floating point is
190smaller than complex.
191Comparisons between numbers of mixed type use the same rule.%
192\footnote{As a consequence, the list \code{[1, 2]} is considered equal
Fred Drake84538cd1998-11-30 21:51:25 +0000193 to \code{[1.0, 2.0]}, and similar for tuples.}
194The functions \function{int()}, \function{long()}, \function{float()},
195and \function{complex()} can be used
Fred Drake64e3b431998-07-24 13:56:11 +0000196to coerce numbers to a specific type.
197\index{arithmetic}
198\bifuncindex{int}
199\bifuncindex{long}
200\bifuncindex{float}
201\bifuncindex{complex}
202
203All numeric types support the following operations, sorted by
204ascending priority (operations in the same box have the same
205priority; all numeric operations have a higher priority than
206comparison operations):
207
208\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
209 \lineiii{\var{x} + \var{y}}{sum of \var{x} and \var{y}}{}
210 \lineiii{\var{x} - \var{y}}{difference of \var{x} and \var{y}}{}
211 \hline
212 \lineiii{\var{x} * \var{y}}{product of \var{x} and \var{y}}{}
213 \lineiii{\var{x} / \var{y}}{quotient of \var{x} and \var{y}}{(1)}
214 \lineiii{\var{x} \%{} \var{y}}{remainder of \code{\var{x} / \var{y}}}{}
215 \hline
216 \lineiii{-\var{x}}{\var{x} negated}{}
217 \lineiii{+\var{x}}{\var{x} unchanged}{}
218 \hline
219 \lineiii{abs(\var{x})}{absolute value or magnitude of \var{x}}{}
220 \lineiii{int(\var{x})}{\var{x} converted to integer}{(2)}
221 \lineiii{long(\var{x})}{\var{x} converted to long integer}{(2)}
222 \lineiii{float(\var{x})}{\var{x} converted to floating point}{}
223 \lineiii{complex(\var{re},\var{im})}{a complex number with real part \var{re}, imaginary part \var{im}. \var{im} defaults to zero.}{}
Fred Drake26b698f1999-02-12 18:27:31 +0000224 \lineiii{\var{c}.conjugate()}{conjugate of the complex number \var{c}}{}
Fred Drake64e3b431998-07-24 13:56:11 +0000225 \lineiii{divmod(\var{x}, \var{y})}{the pair \code{(\var{x} / \var{y}, \var{x} \%{} \var{y})}}{(3)}
226 \lineiii{pow(\var{x}, \var{y})}{\var{x} to the power \var{y}}{}
227 \lineiii{\var{x} ** \var{y}}{\var{x} to the power \var{y}}{}
228\end{tableiii}
229\indexiii{operations on}{numeric}{types}
Fred Drake26b698f1999-02-12 18:27:31 +0000230\withsubitem{(complex number method)}{\ttindex{conjugate()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000231
232\noindent
233Notes:
234\begin{description}
235
236\item[(1)]
237For (plain or long) integer division, the result is an integer.
238The result is always rounded towards minus infinity: 1/2 is 0,
239(-1)/2 is -1, 1/(-2) is -1, and (-1)/(-2) is 0.
240\indexii{integer}{division}
241\indexiii{long}{integer}{division}
242
243\item[(2)]
244Conversion from floating point to (long or plain) integer may round or
Fred Drake84538cd1998-11-30 21:51:25 +0000245truncate as in \C{}; see functions \function{floor()} and \function{ceil()} in
246module \module{math} for well-defined conversions.
247\withsubitem{(in module math)}{%
248 \ttindex{floor()}%
249 \ttindex{ceil()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000250\indexii{numeric}{conversions}
251\refbimodindex{math}
252\indexii{C@\C{}}{language}
253
254\item[(3)]
255See the section on built-in functions for an exact definition.
256
257\end{description}
258% XXXJH exceptions: overflow (when? what operations?) zerodivision
259
260\subsubsection{Bit-string Operations on Integer Types}
261\nodename{Bit-string Operations}
262
263Plain and long integer types support additional operations that make
264sense only for bit-strings. Negative numbers are treated as their 2's
265complement value (for long integers, this assumes a sufficiently large
266number of bits that no overflow occurs during the operation).
267
268The priorities of the binary bit-wise operations are all lower than
269the numeric operations and higher than the comparisons; the unary
270operation \samp{\~} has the same priority as the other unary numeric
271operations (\samp{+} and \samp{-}).
272
273This table lists the bit-string operations sorted in ascending
274priority (operations in the same box have the same priority):
275
276\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
277 \lineiii{\var{x} | \var{y}}{bitwise \dfn{or} of \var{x} and \var{y}}{}
278 \lineiii{\var{x} \^{} \var{y}}{bitwise \dfn{exclusive or} of \var{x} and \var{y}}{}
279 \lineiii{\var{x} \&{} \var{y}}{bitwise \dfn{and} of \var{x} and \var{y}}{}
280 \lineiii{\var{x} << \var{n}}{\var{x} shifted left by \var{n} bits}{(1), (2)}
281 \lineiii{\var{x} >> \var{n}}{\var{x} shifted right by \var{n} bits}{(1), (3)}
282 \hline
283 \lineiii{\~\var{x}}{the bits of \var{x} inverted}{}
284\end{tableiii}
285\indexiii{operations on}{integer}{types}
286\indexii{bit-string}{operations}
287\indexii{shifting}{operations}
288\indexii{masking}{operations}
289
290\noindent
291Notes:
292\begin{description}
293\item[(1)] Negative shift counts are illegal and cause a
294\exception{ValueError} to be raised.
295\item[(2)] A left shift by \var{n} bits is equivalent to
296multiplication by \code{pow(2, \var{n})} without overflow check.
297\item[(3)] A right shift by \var{n} bits is equivalent to
298division by \code{pow(2, \var{n})} without overflow check.
299\end{description}
300
301
Fred Drake7a2f0661998-09-10 18:25:58 +0000302\subsection{Sequence Types \label{typesseq}}
Fred Drake64e3b431998-07-24 13:56:11 +0000303
304There are three sequence types: strings, lists and tuples.
305
306Strings literals are written in single or double quotes:
307\code{'xyzzy'}, \code{"frobozz"}. See Chapter 2 of the \emph{Python
308Reference Manual} for more about string literals. Lists are
309constructed with square brackets, separating items with commas:
310\code{[a, b, c]}. Tuples are constructed by the comma operator (not
311within square brackets), with or without enclosing parentheses, but an
312empty tuple must have the enclosing parentheses, e.g.,
313\code{a, b, c} or \code{()}. A single item tuple must have a trailing
314comma, e.g., \code{(d,)}.
315\indexii{sequence}{types}
316\indexii{string}{type}
317\indexii{tuple}{type}
318\indexii{list}{type}
319
320Sequence types support the following operations. The \samp{in} and
321\samp{not in} operations have the same priorities as the comparison
322operations. The \samp{+} and \samp{*} operations have the same
323priority as the corresponding numeric operations.\footnote{They must
324have since the parser can't tell the type of the operands.}
325
326This table lists the sequence operations sorted in ascending priority
327(operations in the same box have the same priority). In the table,
328\var{s} and \var{t} are sequences of the same type; \var{n}, \var{i}
329and \var{j} are integers:
330
331\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
332 \lineiii{\var{x} in \var{s}}{\code{1} if an item of \var{s} is equal to \var{x}, else \code{0}}{}
333 \lineiii{\var{x} not in \var{s}}{\code{0} if an item of \var{s} is
334equal to \var{x}, else \code{1}}{}
335 \hline
336 \lineiii{\var{s} + \var{t}}{the concatenation of \var{s} and \var{t}}{}
Fred Drake84538cd1998-11-30 21:51:25 +0000337 \lineiii{\var{s} * \var{n}\textrm{,} \var{n} * \var{s}}{\var{n} copies of \var{s} concatenated}{(3)}
Fred Drake64e3b431998-07-24 13:56:11 +0000338 \hline
339 \lineiii{\var{s}[\var{i}]}{\var{i}'th item of \var{s}, origin 0}{(1)}
340 \lineiii{\var{s}[\var{i}:\var{j}]}{slice of \var{s} from \var{i} to \var{j}}{(1), (2)}
341 \hline
342 \lineiii{len(\var{s})}{length of \var{s}}{}
343 \lineiii{min(\var{s})}{smallest item of \var{s}}{}
344 \lineiii{max(\var{s})}{largest item of \var{s}}{}
345\end{tableiii}
346\indexiii{operations on}{sequence}{types}
347\bifuncindex{len}
348\bifuncindex{min}
349\bifuncindex{max}
350\indexii{concatenation}{operation}
351\indexii{repetition}{operation}
352\indexii{subscript}{operation}
353\indexii{slice}{operation}
354\opindex{in}
355\opindex{not in}
356
357\noindent
358Notes:
359
360\begin{description}
361
362\item[(1)] If \var{i} or \var{j} is negative, the index is relative to
363 the end of the string, i.e., \code{len(\var{s}) + \var{i}} or
364 \code{len(\var{s}) + \var{j}} is substituted. But note that \code{-0} is
365 still \code{0}.
366
367\item[(2)] The slice of \var{s} from \var{i} to \var{j} is defined as
368 the sequence of items with index \var{k} such that \code{\var{i} <=
369 \var{k} < \var{j}}. If \var{i} or \var{j} is greater than
370 \code{len(\var{s})}, use \code{len(\var{s})}. If \var{i} is omitted,
371 use \code{0}. If \var{j} is omitted, use \code{len(\var{s})}. If
372 \var{i} is greater than or equal to \var{j}, the slice is empty.
373
374\item[(3)] Values of \var{n} less than \code{0} are treated as
375 \code{0} (which yields an empty sequence of the same type as
376 \var{s}).
377
378\end{description}
379
380\subsubsection{More String Operations}
381
382String objects have one unique built-in operation: the \code{\%}
383operator (modulo) with a string left argument interprets this string
384as a \C{} \cfunction{sprintf()} format string to be applied to the
385right argument, and returns the string resulting from this formatting
386operation.
387
388The right argument should be a tuple with one item for each argument
389required by the format string; if the string requires a single
390argument, the right argument may also be a single non-tuple object.%
391\footnote{A tuple object in this case should be a singleton.}
392The following format characters are understood:
393\code{\%}, \code{c}, \code{s}, \code{i}, \code{d}, \code{u}, \code{o},
394\code{x}, \code{X}, \code{e}, \code{E}, \code{f}, \code{g}, \code{G}.
395Width and precision may be a \code{*} to specify that an integer argument
396specifies the actual width or precision. The flag characters
397\code{-}, \code{+}, blank, \code{\#} and \code{0} are understood. The
398size specifiers \code{h}, \code{l} or \code{L} may be
399present but are ignored. The \code{\%s} conversion takes any Python
400object and converts it to a string using \code{str()} before
401formatting it. The ANSI features \code{\%p} and \code{\%n}
402are not supported. Since Python strings have an explicit length,
403\code{\%s} conversions don't assume that \code{'\e0'} is the end of
404the string.
405
406For safety reasons, floating point precisions are clipped to 50;
407\code{\%f} conversions for numbers whose absolute value is over 1e25
408are replaced by \code{\%g} conversions.%
409\footnote{These numbers are fairly arbitrary. They are intended to
410avoid printing endless strings of meaningless digits without hampering
411correct use and without having to know the exact precision of floating
412point values on a particular machine.}
413All other errors raise exceptions.
414
415If the right argument is a dictionary (or any kind of mapping), then
416the formats in the string must have a parenthesized key into that
417dictionary inserted immediately after the \character{\%} character,
418and each format formats the corresponding entry from the mapping.
419For example:
420
421\begin{verbatim}
422>>> count = 2
423>>> language = 'Python'
424>>> print '%(language)s has %(count)03d quote types.' % vars()
425Python has 002 quote types.
426\end{verbatim}
427
428In this case no \code{*} specifiers may occur in a format (since they
429require a sequential parameter list).
430
431Additional string operations are defined in standard module
432\module{string} and in built-in module \module{re}.
433\refstmodindex{string}
Fred Drake66da9d61998-08-07 18:57:18 +0000434\refstmodindex{re}
Fred Drake64e3b431998-07-24 13:56:11 +0000435
436\subsubsection{Mutable Sequence Types}
437
438List objects support additional operations that allow in-place
439modification of the object.
440These operations would be supported by other mutable sequence types
441(when added to the language) as well.
442Strings and tuples are immutable sequence types and such objects cannot
443be modified once created.
444The following operations are defined on mutable sequence types (where
445\var{x} is an arbitrary object):
446\indexiii{mutable}{sequence}{types}
447\indexii{list}{type}
448
449\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
450 \lineiii{\var{s}[\var{i}] = \var{x}}
451 {item \var{i} of \var{s} is replaced by \var{x}}{}
452 \lineiii{\var{s}[\var{i}:\var{j}] = \var{t}}
453 {slice of \var{s} from \var{i} to \var{j} is replaced by \var{t}}{}
454 \lineiii{del \var{s}[\var{i}:\var{j}]}
455 {same as \code{\var{s}[\var{i}:\var{j}] = []}}{}
456 \lineiii{\var{s}.append(\var{x})}
457 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = [\var{x}]}}{}
Barry Warsawafd974c1998-10-09 16:39:58 +0000458 \lineiii{\var{s}.extend(\var{x})}
459 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = \var{x}}}{(5)}
Fred Drake64e3b431998-07-24 13:56:11 +0000460 \lineiii{\var{s}.count(\var{x})}
461 {return number of \var{i}'s for which \code{\var{s}[\var{i}] == \var{x}}}{}
462 \lineiii{\var{s}.index(\var{x})}
463 {return smallest \var{i} such that \code{\var{s}[\var{i}] == \var{x}}}{(1)}
464 \lineiii{\var{s}.insert(\var{i}, \var{x})}
465 {same as \code{\var{s}[\var{i}:\var{i}] = [\var{x}]}
466 if \code{\var{i} >= 0}}{}
467 \lineiii{\var{s}.pop(\optional{\var{i}})}
468 {same as \code{\var{x} = \var{s}[\var{i}]; del \var{s}[\var{i}]; return \var{x}}}{(4)}
469 \lineiii{\var{s}.remove(\var{x})}
470 {same as \code{del \var{s}[\var{s}.index(\var{x})]}}{(1)}
471 \lineiii{\var{s}.reverse()}
472 {reverses the items of \var{s} in place}{(3)}
473 \lineiii{\var{s}.sort(\optional{\var{cmpfunc}})}
474 {sort the items of \var{s} in place}{(2), (3)}
475\end{tableiii}
476\indexiv{operations on}{mutable}{sequence}{types}
477\indexiii{operations on}{sequence}{types}
478\indexiii{operations on}{list}{type}
479\indexii{subscript}{assignment}
480\indexii{slice}{assignment}
481\stindex{del}
Fred Drake7a2f0661998-09-10 18:25:58 +0000482\withsubitem{(list method)}{%
Fred Drakee8391991998-11-25 17:09:19 +0000483 \ttindex{append()}%
484 \ttindex{extend()}%
485 \ttindex{count()}%
486 \ttindex{index()}%
487 \ttindex{insert()}%
488 \ttindex{pop()}%
489 \ttindex{remove()}%
490 \ttindex{reverse()}%
491 \ttindex{sort()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000492\noindent
493Notes:
494\begin{description}
495\item[(1)] Raises an exception when \var{x} is not found in \var{s}.
496
Fred Drake84538cd1998-11-30 21:51:25 +0000497\item[(2)] The \method{sort()} method takes an optional argument
Fred Drake64e3b431998-07-24 13:56:11 +0000498 specifying a comparison function of two arguments (list items) which
499 should return \code{-1}, \code{0} or \code{1} depending on whether the
500 first argument is considered smaller than, equal to, or larger than the
501 second argument. Note that this slows the sorting process down
502 considerably; e.g. to sort a list in reverse order it is much faster
Fred Drake84538cd1998-11-30 21:51:25 +0000503 to use calls to the methods \method{sort()} and \method{reverse()}
504 than to use the built-in function \function{sort()} with a
505 comparison function that reverses the ordering of the elements.
Fred Drake64e3b431998-07-24 13:56:11 +0000506
Fred Drake84538cd1998-11-30 21:51:25 +0000507\item[(3)] The \method{sort()} and \method{reverse()} methods modify the
Fred Drake64e3b431998-07-24 13:56:11 +0000508list in place for economy of space when sorting or reversing a large
509list. They don't return the sorted or reversed list to remind you of
510this side effect.
511
512\item[(4)] The \method{pop()} method is experimental and not supported
513by other mutable sequence types than lists.
514The optional argument \var{i} defaults to \code{-1}, so that
515by default the last item is removed and returned.
516
Barry Warsawafd974c1998-10-09 16:39:58 +0000517\item[(5)] Raises an exception when \var{x} is not a list object. The
518\method{extend()} method is experimental and not supported by mutable types
519other than lists.
Fred Drake64e3b431998-07-24 13:56:11 +0000520\end{description}
521
522
Fred Drake7a2f0661998-09-10 18:25:58 +0000523\subsection{Mapping Types \label{typesmapping}}
Fred Drake64e3b431998-07-24 13:56:11 +0000524
525A \dfn{mapping} object maps values of one type (the key type) to
526arbitrary objects. Mappings are mutable objects. There is currently
527only one standard mapping type, the \dfn{dictionary}. A dictionary's keys are
528almost arbitrary values. The only types of values not acceptable as
529keys are values containing lists or dictionaries or other mutable
530types that are compared by value rather than by object identity.
531Numeric types used for keys obey the normal rules for numeric
532comparison: if two numbers compare equal (e.g. \code{1} and
533\code{1.0}) then they can be used interchangeably to index the same
534dictionary entry.
535
536\indexii{mapping}{types}
537\indexii{dictionary}{type}
538
539Dictionaries are created by placing a comma-separated list of
540\code{\var{key}: \var{value}} pairs within braces, for example:
541\code{\{'jack': 4098, 'sjoerd': 4127\}} or
542\code{\{4098: 'jack', 4127: 'sjoerd'\}}.
543
544The following operations are defined on mappings (where \var{a} is a
545mapping, \var{k} is a key and \var{x} is an arbitrary object):
546
547\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
548 \lineiii{len(\var{a})}{the number of items in \var{a}}{}
549 \lineiii{\var{a}[\var{k}]}{the item of \var{a} with key \var{k}}{(1)}
550 \lineiii{\var{a}[\var{k}] = \var{x}}{set \code{\var{a}[\var{k}]} to \var{x}}{}
551 \lineiii{del \var{a}[\var{k}]}{remove \code{\var{a}[\var{k}]} from \var{a}}{(1)}
552 \lineiii{\var{a}.clear()}{remove all items from \code{a}}{}
553 \lineiii{\var{a}.copy()}{a (shallow) copy of \code{a}}{}
554 \lineiii{\var{a}.has_key(\var{k})}{\code{1} if \var{a} has a key \var{k}, else \code{0}}{}
Fred Drake7a2f0661998-09-10 18:25:58 +0000555 \lineiii{\var{a}.items()}{a copy of \var{a}'s list of (\var{key}, \var{value}) pairs}{(2)}
Fred Drake64e3b431998-07-24 13:56:11 +0000556 \lineiii{\var{a}.keys()}{a copy of \var{a}'s list of keys}{(2)}
557 \lineiii{\var{a}.update(\var{b})}{\code{for k, v in \var{b}.items(): \var{a}[k] = v}}{(3)}
558 \lineiii{\var{a}.values()}{a copy of \var{a}'s list of values}{(2)}
Fred Drake7a2f0661998-09-10 18:25:58 +0000559 \lineiii{\var{a}.get(\var{k}\optional{, \var{f}})}{the value of \var{a} with key \var{k}}{(4)}
Fred Drake64e3b431998-07-24 13:56:11 +0000560\end{tableiii}
561\indexiii{operations on}{mapping}{types}
562\indexiii{operations on}{dictionary}{type}
563\stindex{del}
564\bifuncindex{len}
Fred Drake7a2f0661998-09-10 18:25:58 +0000565\withsubitem{(dictionary method)}{%
Fred Drakee8391991998-11-25 17:09:19 +0000566 \ttindex{clear()}%
567 \ttindex{copy()}%
568 \ttindex{has_key()}%
569 \ttindex{items()}%
570 \ttindex{keys()}%
571 \ttindex{update()}%
572 \ttindex{values()}%
573 \ttindex{get()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000574\noindent
575Notes:
576\begin{description}
577\item[(1)] Raises an exception if \var{k} is not in the map.
578
579\item[(2)] Keys and values are listed in random order.
580
581\item[(3)] \var{b} must be of the same type as \var{a}.
582
583\item[(4)] Never raises an exception if \var{k} is not in the map,
584instead it returns \var{f}. \var{f} is optional, when not provided
585and \var{k} is not in the map, \code{None} is returned.
586\end{description}
587
588
Fred Drake7a2f0661998-09-10 18:25:58 +0000589\subsection{Other Built-in Types \label{typesother}}
Fred Drake64e3b431998-07-24 13:56:11 +0000590
591The interpreter supports several other kinds of objects.
592Most of these support only one or two operations.
593
594\subsubsection{Modules}
595
596The only special operation on a module is attribute access:
597\code{\var{m}.\var{name}}, where \var{m} is a module and \var{name}
598accesses a name defined in \var{m}'s symbol table. Module attributes
Fred Drake84538cd1998-11-30 21:51:25 +0000599can be assigned to. (Note that the \keyword{import} statement is not,
Fred Draked0421dd1998-08-24 17:57:20 +0000600strictly speaking, an operation on a module object; \code{import
Fred Drake64e3b431998-07-24 13:56:11 +0000601\var{foo}} does not require a module object named \var{foo} to exist,
602rather it requires an (external) \emph{definition} for a module named
603\var{foo} somewhere.)
604
Fred Drake84538cd1998-11-30 21:51:25 +0000605A special member of every module is \member{__dict__}.
Fred Drake64e3b431998-07-24 13:56:11 +0000606This is the dictionary containing the module's symbol table.
607Modifying this dictionary will actually change the module's symbol
Fred Drake84538cd1998-11-30 21:51:25 +0000608table, but direct assignment to the \member{__dict__} attribute is not
Fred Drake64e3b431998-07-24 13:56:11 +0000609possible (i.e., you can write \code{\var{m}.__dict__['a'] = 1}, which
610defines \code{\var{m}.a} to be \code{1}, but you can't write
611\code{\var{m}.__dict__ = \{\}}.
612
613Modules are written like this: \code{<module 'sys'>}.
614
615\subsubsection{Classes and Class Instances}
616\nodename{Classes and Instances}
617
618See Chapters 3 and 7 of the \emph{Python Reference Manual} for these.
619
620\subsubsection{Functions}
621
622Function objects are created by function definitions. The only
623operation on a function object is to call it:
624\code{\var{func}(\var{argument-list})}.
625
626There are really two flavors of function objects: built-in functions
627and user-defined functions. Both support the same operation (to call
628the function), but the implementation is different, hence the
629different object types.
630
631The implementation adds two special read-only attributes:
632\code{\var{f}.func_code} is a function's \dfn{code
633object}\obindex{code} (see below) and \code{\var{f}.func_globals} is
634the dictionary used as the function's global name space (this is the
635same as \code{\var{m}.__dict__} where \var{m} is the module in which
636the function \var{f} was defined).
637
638
639\subsubsection{Methods}
640\obindex{method}
641
642Methods are functions that are called using the attribute notation.
Fred Drake84538cd1998-11-30 21:51:25 +0000643There are two flavors: built-in methods (such as \method{append()} on
Fred Drake64e3b431998-07-24 13:56:11 +0000644lists) and class instance methods. Built-in methods are described
645with the types that support them.
646
647The implementation adds two special read-only attributes to class
Fred Draked0421dd1998-08-24 17:57:20 +0000648instance methods: \code{\var{m}.im_self} is the object on which the
649method operates, and \code{\var{m}.im_func} is the function
650implementing the method. Calling \code{\var{m}(\var{arg-1},
Fred Drake84538cd1998-11-30 21:51:25 +0000651\var{arg-2}, \textrm{\ldots}, \var{arg-n})} is completely equivalent to
Fred Draked0421dd1998-08-24 17:57:20 +0000652calling \code{\var{m}.im_func(\var{m}.im_self, \var{arg-1},
Fred Drake84538cd1998-11-30 21:51:25 +0000653\var{arg-2}, \textrm{\ldots}, \var{arg-n})}.
Fred Drake64e3b431998-07-24 13:56:11 +0000654
655See the \emph{Python Reference Manual} for more information.
656
Fred Drake7a2f0661998-09-10 18:25:58 +0000657
658\subsubsection{Code Objects \label{bltin-code-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000659\obindex{code}
660
661Code objects are used by the implementation to represent
662``pseudo-compiled'' executable Python code such as a function body.
663They differ from function objects because they don't contain a
664reference to their global execution environment. Code objects are
Fred Drake84538cd1998-11-30 21:51:25 +0000665returned by the built-in \function{compile()} function and can be
666extracted from function objects through their \member{func_code}
Fred Drake64e3b431998-07-24 13:56:11 +0000667attribute.
668\bifuncindex{compile}
Fred Drakee8391991998-11-25 17:09:19 +0000669\withsubitem{(function object attribute)}{\ttindex{func_code}}
Fred Drake64e3b431998-07-24 13:56:11 +0000670
671A code object can be executed or evaluated by passing it (instead of a
Fred Drake84538cd1998-11-30 21:51:25 +0000672source string) to the \keyword{exec} statement or the built-in
673\function{eval()} function.
Fred Drake64e3b431998-07-24 13:56:11 +0000674\stindex{exec}
675\bifuncindex{eval}
676
677See the \emph{Python Reference Manual} for more information.
678
Fred Drake7a2f0661998-09-10 18:25:58 +0000679
680\subsubsection{Type Objects \label{bltin-type-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000681
682Type objects represent the various object types. An object's type is
Fred Drake84538cd1998-11-30 21:51:25 +0000683accessed by the built-in function \function{type()}. There are no special
684operations on types. The standard module \module{types} defines names
Fred Drake64e3b431998-07-24 13:56:11 +0000685for all standard built-in types.
686\bifuncindex{type}
687\refstmodindex{types}
688
689Types are written like this: \code{<type 'int'>}.
690
Fred Drake7a2f0661998-09-10 18:25:58 +0000691
692\subsubsection{The Null Object \label{bltin-null-object}}
Fred Drake64e3b431998-07-24 13:56:11 +0000693
694This object is returned by functions that don't explicitly return a
695value. It supports no special operations. There is exactly one null
696object, named \code{None} (a built-in name).
697
698It is written as \code{None}.
699
Fred Drake7a2f0661998-09-10 18:25:58 +0000700
701\subsubsection{The Ellipsis Object \label{bltin-ellipsis-object}}
Guido van Rossumb193c951998-07-24 15:02:02 +0000702
703This object is used by extended slice notation (see the \emph{Python
704Reference Manual}). It supports no special operations. There is
705exactly one ellipsis object, named \code{Ellipsis} (a built-in name).
706
707It is written as \code{Ellipsis}.
708
Fred Drake7a2f0661998-09-10 18:25:58 +0000709\subsubsection{File Objects \label{bltin-file-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000710
711File objects are implemented using \C{}'s \code{stdio} package and can be
Fred Drake130072d1998-10-28 20:08:35 +0000712created with the built-in function \function{open()} described Section
713\ref{built-in-funcs}, ``Built-in Functions.'' They are also returned
714by some other built-in functions and methods, e.g.,
715\function{posix.popen()} and \function{posix.fdopen()} and the
716\method{makefile()} method of socket objects.
Fred Drake64e3b431998-07-24 13:56:11 +0000717\bifuncindex{open}
718\refbimodindex{posix}
719\refbimodindex{socket}
720
721When a file operation fails for an I/O-related reason, the exception
Fred Drake84538cd1998-11-30 21:51:25 +0000722\exception{IOError} is raised. This includes situations where the
723operation is not defined for some reason, like \method{seek()} on a tty
Fred Drake64e3b431998-07-24 13:56:11 +0000724device or writing a file opened for reading.
725
726Files have the following methods:
727
728
729\begin{methoddesc}[file]{close}{}
730 Close the file. A closed file cannot be read or written anymore.
731\end{methoddesc}
732
733\begin{methoddesc}[file]{flush}{}
Fred Drake84538cd1998-11-30 21:51:25 +0000734 Flush the internal buffer, like \code{stdio}'s \cfunction{fflush()}.
Fred Drake64e3b431998-07-24 13:56:11 +0000735\end{methoddesc}
736
737\begin{methoddesc}[file]{isatty}{}
738 Return \code{1} if the file is connected to a tty(-like) device, else
739 \code{0}.
740\end{methoddesc}
741
742\begin{methoddesc}[file]{fileno}{}
743Return the integer ``file descriptor'' that is used by the underlying
744implementation to request I/O operations from the operating system.
745This can be useful for other, lower level interfaces that use file
Fred Drake84538cd1998-11-30 21:51:25 +0000746descriptors, e.g. module \module{fcntl} or \function{os.read()} and friends.
Fred Drake64e3b431998-07-24 13:56:11 +0000747\refbimodindex{fcntl}
748\end{methoddesc}
749
750\begin{methoddesc}[file]{read}{\optional{size}}
751 Read at most \var{size} bytes from the file (less if the read hits
752 \EOF{} or no more data is immediately available on a pipe, tty or
753 similar device). If the \var{size} argument is negative or omitted,
754 read all data until \EOF{} is reached. The bytes are returned as a string
755 object. An empty string is returned when \EOF{} is encountered
756 immediately. (For certain files, like ttys, it makes sense to
757 continue reading after an \EOF{} is hit.)
758\end{methoddesc}
759
760\begin{methoddesc}[file]{readline}{\optional{size}}
761 Read one entire line from the file. A trailing newline character is
762 kept in the string%
763\footnote{The advantage of leaving the newline on is that an empty string
764 can be returned to mean \EOF{} without being ambiguous. Another
765 advantage is that (in cases where it might matter, e.g. if you
766 want to make an exact copy of a file while scanning its lines)
767 you can tell whether the last line of a file ended in a newline
768 or not (yes this happens!).}
769 (but may be absent when a file ends with an
770 incomplete line). If the \var{size} argument is present and
771 non-negative, it is a maximum byte count (including the trailing
772 newline) and an incomplete line may be returned.
773 An empty string is returned when \EOF{} is hit
774 immediately. Note: unlike \code{stdio}'s \cfunction{fgets()}, the returned
775 string contains null characters (\code{'\e 0'}) if they occurred in the
776 input.
777\end{methoddesc}
778
779\begin{methoddesc}[file]{readlines}{\optional{sizehint}}
780 Read until \EOF{} using \method{readline()} and return a list containing
781 the lines thus read. If the optional \var{sizehint} argument is
782 present, instead of reading up to \EOF{}, whole lines totalling
783 approximately \var{sizehint} bytes (possibly after rounding up to an
784 internal buffer size) are read.
785\end{methoddesc}
786
787\begin{methoddesc}[file]{seek}{offset\optional{, whence}}
788 Set the file's current position, like \code{stdio}'s \cfunction{fseek()}.
789 The \var{whence} argument is optional and defaults to \code{0}
790 (absolute file positioning); other values are \code{1} (seek
791 relative to the current position) and \code{2} (seek relative to the
792 file's end). There is no return value.
793\end{methoddesc}
794
795\begin{methoddesc}[file]{tell}{}
796 Return the file's current position, like \code{stdio}'s
797 \cfunction{ftell()}.
798\end{methoddesc}
799
800\begin{methoddesc}[file]{truncate}{\optional{size}}
801Truncate the file's size. If the optional size argument present, the
802file is truncated to (at most) that size. The size defaults to the
803current position. Availability of this function depends on the
804operating system version (e.g., not all \UNIX{} versions support this
805operation).
806\end{methoddesc}
807
808\begin{methoddesc}[file]{write}{str}
809Write a string to the file. There is no return value. Note: due to
810buffering, the string may not actually show up in the file until
811the \method{flush()} or \method{close()} method is called.
812\end{methoddesc}
813
814\begin{methoddesc}[file]{writelines}{list}
815Write a list of strings to the file. There is no return value.
816(The name is intended to match \method{readlines()};
817\method{writelines()} does not add line separators.)
818\end{methoddesc}
819
820
821File objects also offer the following attributes:
822
823\begin{memberdesc}[file]{closed}
824Boolean indicating the current state of the file object. This is a
825read-only attribute; the \method{close()} method changes the value.
826\end{memberdesc}
827
828\begin{memberdesc}[file]{mode}
829The I/O mode for the file. If the file was created using the
830\function{open()} built-in function, this will be the value of the
831\var{mode} parameter. This is a read-only attribute.
832\end{memberdesc}
833
834\begin{memberdesc}[file]{name}
835If the file object was created using \function{open()}, the name of
836the file. Otherwise, some string that indicates the source of the
837file object, of the form \samp{<\mbox{\ldots}>}. This is a read-only
838attribute.
839\end{memberdesc}
840
841\begin{memberdesc}[file]{softspace}
842Boolean that indicates whether a space character needs to be printed
843before another value when using the \keyword{print} statement.
844Classes that are trying to simulate a file object should also have a
845writable \member{softspace} attribute, which should be initialized to
846zero. This will be automatic for classes implemented in Python; types
847implemented in \C{} will have to provide a writable \member{softspace}
848attribute.
849\end{memberdesc}
850
851\subsubsection{Internal Objects}
852
853See the \emph{Python Reference Manual} for this information. It
854describes code objects, stack frame objects, traceback objects, and
855slice objects.
856
857
Fred Drake7a2f0661998-09-10 18:25:58 +0000858\subsection{Special Attributes \label{specialattrs}}
Fred Drake64e3b431998-07-24 13:56:11 +0000859
860The implementation adds a few special read-only attributes to several
861object types, where they are relevant:
862
Fred Drake7a2f0661998-09-10 18:25:58 +0000863\begin{memberdescni}{__dict__}
864A dictionary of some sort used to store an
865object's (writable) attributes.
866\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000867
Fred Drake7a2f0661998-09-10 18:25:58 +0000868\begin{memberdescni}{__methods__}
869List of the methods of many built-in object types,
Fred Drake64e3b431998-07-24 13:56:11 +0000870e.g., \code{[].__methods__} yields
Fred Drake7a2f0661998-09-10 18:25:58 +0000871\code{['append', 'count', 'index', 'insert', 'pop', 'remove',
872'reverse', 'sort']}.
873\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000874
Fred Drake7a2f0661998-09-10 18:25:58 +0000875\begin{memberdescni}{__members__}
876Similar to \member{__methods__}, but lists data attributes.
877\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000878
Fred Drake7a2f0661998-09-10 18:25:58 +0000879\begin{memberdescni}{__class__}
880The class to which a class instance belongs.
881\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000882
Fred Drake7a2f0661998-09-10 18:25:58 +0000883\begin{memberdescni}{__bases__}
884The tuple of base classes of a class object.
885\end{memberdescni}