blob: ba26ca4a53002db8167fbaf413b41b035598e0d2 [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
12a string (with the \code{`{\rm \ldots}`} notation). The latter conversion is
13implicitly used when an object is written by the \code{print} statement.
14\stindex{print}
15
16
Fred Drake7a2f0661998-09-10 18:25:58 +000017\subsection{Truth Value Testing \label{truth}}
Fred Drake64e3b431998-07-24 13:56:11 +000018
19Any object can be tested for truth value, for use in an \code{if} or
20\code{while} condition or as operand of the Boolean operations below.
21The 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})
153are implemented using \code{long} in \C{}, which gives them at least 32
154bits of precision. Long integers have unlimited precision. Floating
155point numbers are implemented using \code{double} in \C{}. All bets on
156their 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
167implemented using \code{double} in \C{}. To extract these parts from
168a 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
193 to \code{[1.0, 2.0]}, and similar for tuples.}
194The functions \code{int()}, \code{long()}, \code{float()},
195and \code{complex()} can be used
196to 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.}{}
224 \lineiii{divmod(\var{x}, \var{y})}{the pair \code{(\var{x} / \var{y}, \var{x} \%{} \var{y})}}{(3)}
225 \lineiii{pow(\var{x}, \var{y})}{\var{x} to the power \var{y}}{}
226 \lineiii{\var{x} ** \var{y}}{\var{x} to the power \var{y}}{}
227\end{tableiii}
228\indexiii{operations on}{numeric}{types}
229
230\noindent
231Notes:
232\begin{description}
233
234\item[(1)]
235For (plain or long) integer division, the result is an integer.
236The result is always rounded towards minus infinity: 1/2 is 0,
237(-1)/2 is -1, 1/(-2) is -1, and (-1)/(-2) is 0.
238\indexii{integer}{division}
239\indexiii{long}{integer}{division}
240
241\item[(2)]
242Conversion from floating point to (long or plain) integer may round or
243truncate as in \C{}; see functions \code{floor()} and \code{ceil()} in
244module \code{math} for well-defined conversions.
245\bifuncindex{floor}
246\bifuncindex{ceil}
247\indexii{numeric}{conversions}
248\refbimodindex{math}
249\indexii{C@\C{}}{language}
250
251\item[(3)]
252See the section on built-in functions for an exact definition.
253
254\end{description}
255% XXXJH exceptions: overflow (when? what operations?) zerodivision
256
257\subsubsection{Bit-string Operations on Integer Types}
258\nodename{Bit-string Operations}
259
260Plain and long integer types support additional operations that make
261sense only for bit-strings. Negative numbers are treated as their 2's
262complement value (for long integers, this assumes a sufficiently large
263number of bits that no overflow occurs during the operation).
264
265The priorities of the binary bit-wise operations are all lower than
266the numeric operations and higher than the comparisons; the unary
267operation \samp{\~} has the same priority as the other unary numeric
268operations (\samp{+} and \samp{-}).
269
270This table lists the bit-string operations sorted in ascending
271priority (operations in the same box have the same priority):
272
273\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
274 \lineiii{\var{x} | \var{y}}{bitwise \dfn{or} of \var{x} and \var{y}}{}
275 \lineiii{\var{x} \^{} \var{y}}{bitwise \dfn{exclusive or} of \var{x} and \var{y}}{}
276 \lineiii{\var{x} \&{} \var{y}}{bitwise \dfn{and} of \var{x} and \var{y}}{}
277 \lineiii{\var{x} << \var{n}}{\var{x} shifted left by \var{n} bits}{(1), (2)}
278 \lineiii{\var{x} >> \var{n}}{\var{x} shifted right by \var{n} bits}{(1), (3)}
279 \hline
280 \lineiii{\~\var{x}}{the bits of \var{x} inverted}{}
281\end{tableiii}
282\indexiii{operations on}{integer}{types}
283\indexii{bit-string}{operations}
284\indexii{shifting}{operations}
285\indexii{masking}{operations}
286
287\noindent
288Notes:
289\begin{description}
290\item[(1)] Negative shift counts are illegal and cause a
291\exception{ValueError} to be raised.
292\item[(2)] A left shift by \var{n} bits is equivalent to
293multiplication by \code{pow(2, \var{n})} without overflow check.
294\item[(3)] A right shift by \var{n} bits is equivalent to
295division by \code{pow(2, \var{n})} without overflow check.
296\end{description}
297
298
Fred Drake7a2f0661998-09-10 18:25:58 +0000299\subsection{Sequence Types \label{typesseq}}
Fred Drake64e3b431998-07-24 13:56:11 +0000300
301There are three sequence types: strings, lists and tuples.
302
303Strings literals are written in single or double quotes:
304\code{'xyzzy'}, \code{"frobozz"}. See Chapter 2 of the \emph{Python
305Reference Manual} for more about string literals. Lists are
306constructed with square brackets, separating items with commas:
307\code{[a, b, c]}. Tuples are constructed by the comma operator (not
308within square brackets), with or without enclosing parentheses, but an
309empty tuple must have the enclosing parentheses, e.g.,
310\code{a, b, c} or \code{()}. A single item tuple must have a trailing
311comma, e.g., \code{(d,)}.
312\indexii{sequence}{types}
313\indexii{string}{type}
314\indexii{tuple}{type}
315\indexii{list}{type}
316
317Sequence types support the following operations. The \samp{in} and
318\samp{not in} operations have the same priorities as the comparison
319operations. The \samp{+} and \samp{*} operations have the same
320priority as the corresponding numeric operations.\footnote{They must
321have since the parser can't tell the type of the operands.}
322
323This table lists the sequence operations sorted in ascending priority
324(operations in the same box have the same priority). In the table,
325\var{s} and \var{t} are sequences of the same type; \var{n}, \var{i}
326and \var{j} are integers:
327
328\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
329 \lineiii{\var{x} in \var{s}}{\code{1} if an item of \var{s} is equal to \var{x}, else \code{0}}{}
330 \lineiii{\var{x} not in \var{s}}{\code{0} if an item of \var{s} is
331equal to \var{x}, else \code{1}}{}
332 \hline
333 \lineiii{\var{s} + \var{t}}{the concatenation of \var{s} and \var{t}}{}
334 \lineiii{\var{s} * \var{n}{\rm ,} \var{n} * \var{s}}{\var{n} copies of \var{s} concatenated}{(3)}
335 \hline
336 \lineiii{\var{s}[\var{i}]}{\var{i}'th item of \var{s}, origin 0}{(1)}
337 \lineiii{\var{s}[\var{i}:\var{j}]}{slice of \var{s} from \var{i} to \var{j}}{(1), (2)}
338 \hline
339 \lineiii{len(\var{s})}{length of \var{s}}{}
340 \lineiii{min(\var{s})}{smallest item of \var{s}}{}
341 \lineiii{max(\var{s})}{largest item of \var{s}}{}
342\end{tableiii}
343\indexiii{operations on}{sequence}{types}
344\bifuncindex{len}
345\bifuncindex{min}
346\bifuncindex{max}
347\indexii{concatenation}{operation}
348\indexii{repetition}{operation}
349\indexii{subscript}{operation}
350\indexii{slice}{operation}
351\opindex{in}
352\opindex{not in}
353
354\noindent
355Notes:
356
357\begin{description}
358
359\item[(1)] If \var{i} or \var{j} is negative, the index is relative to
360 the end of the string, i.e., \code{len(\var{s}) + \var{i}} or
361 \code{len(\var{s}) + \var{j}} is substituted. But note that \code{-0} is
362 still \code{0}.
363
364\item[(2)] The slice of \var{s} from \var{i} to \var{j} is defined as
365 the sequence of items with index \var{k} such that \code{\var{i} <=
366 \var{k} < \var{j}}. If \var{i} or \var{j} is greater than
367 \code{len(\var{s})}, use \code{len(\var{s})}. If \var{i} is omitted,
368 use \code{0}. If \var{j} is omitted, use \code{len(\var{s})}. If
369 \var{i} is greater than or equal to \var{j}, the slice is empty.
370
371\item[(3)] Values of \var{n} less than \code{0} are treated as
372 \code{0} (which yields an empty sequence of the same type as
373 \var{s}).
374
375\end{description}
376
377\subsubsection{More String Operations}
378
379String objects have one unique built-in operation: the \code{\%}
380operator (modulo) with a string left argument interprets this string
381as a \C{} \cfunction{sprintf()} format string to be applied to the
382right argument, and returns the string resulting from this formatting
383operation.
384
385The right argument should be a tuple with one item for each argument
386required by the format string; if the string requires a single
387argument, the right argument may also be a single non-tuple object.%
388\footnote{A tuple object in this case should be a singleton.}
389The following format characters are understood:
390\code{\%}, \code{c}, \code{s}, \code{i}, \code{d}, \code{u}, \code{o},
391\code{x}, \code{X}, \code{e}, \code{E}, \code{f}, \code{g}, \code{G}.
392Width and precision may be a \code{*} to specify that an integer argument
393specifies the actual width or precision. The flag characters
394\code{-}, \code{+}, blank, \code{\#} and \code{0} are understood. The
395size specifiers \code{h}, \code{l} or \code{L} may be
396present but are ignored. The \code{\%s} conversion takes any Python
397object and converts it to a string using \code{str()} before
398formatting it. The ANSI features \code{\%p} and \code{\%n}
399are not supported. Since Python strings have an explicit length,
400\code{\%s} conversions don't assume that \code{'\e0'} is the end of
401the string.
402
403For safety reasons, floating point precisions are clipped to 50;
404\code{\%f} conversions for numbers whose absolute value is over 1e25
405are replaced by \code{\%g} conversions.%
406\footnote{These numbers are fairly arbitrary. They are intended to
407avoid printing endless strings of meaningless digits without hampering
408correct use and without having to know the exact precision of floating
409point values on a particular machine.}
410All other errors raise exceptions.
411
412If the right argument is a dictionary (or any kind of mapping), then
413the formats in the string must have a parenthesized key into that
414dictionary inserted immediately after the \character{\%} character,
415and each format formats the corresponding entry from the mapping.
416For example:
417
418\begin{verbatim}
419>>> count = 2
420>>> language = 'Python'
421>>> print '%(language)s has %(count)03d quote types.' % vars()
422Python has 002 quote types.
423\end{verbatim}
424
425In this case no \code{*} specifiers may occur in a format (since they
426require a sequential parameter list).
427
428Additional string operations are defined in standard module
429\module{string} and in built-in module \module{re}.
430\refstmodindex{string}
Fred Drake66da9d61998-08-07 18:57:18 +0000431\refstmodindex{re}
Fred Drake64e3b431998-07-24 13:56:11 +0000432
433\subsubsection{Mutable Sequence Types}
434
435List objects support additional operations that allow in-place
436modification of the object.
437These operations would be supported by other mutable sequence types
438(when added to the language) as well.
439Strings and tuples are immutable sequence types and such objects cannot
440be modified once created.
441The following operations are defined on mutable sequence types (where
442\var{x} is an arbitrary object):
443\indexiii{mutable}{sequence}{types}
444\indexii{list}{type}
445
446\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
447 \lineiii{\var{s}[\var{i}] = \var{x}}
448 {item \var{i} of \var{s} is replaced by \var{x}}{}
449 \lineiii{\var{s}[\var{i}:\var{j}] = \var{t}}
450 {slice of \var{s} from \var{i} to \var{j} is replaced by \var{t}}{}
451 \lineiii{del \var{s}[\var{i}:\var{j}]}
452 {same as \code{\var{s}[\var{i}:\var{j}] = []}}{}
453 \lineiii{\var{s}.append(\var{x})}
454 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = [\var{x}]}}{}
Barry Warsawafd974c1998-10-09 16:39:58 +0000455 \lineiii{\var{s}.extend(\var{x})}
456 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = \var{x}}}{(5)}
Fred Drake64e3b431998-07-24 13:56:11 +0000457 \lineiii{\var{s}.count(\var{x})}
458 {return number of \var{i}'s for which \code{\var{s}[\var{i}] == \var{x}}}{}
459 \lineiii{\var{s}.index(\var{x})}
460 {return smallest \var{i} such that \code{\var{s}[\var{i}] == \var{x}}}{(1)}
461 \lineiii{\var{s}.insert(\var{i}, \var{x})}
462 {same as \code{\var{s}[\var{i}:\var{i}] = [\var{x}]}
463 if \code{\var{i} >= 0}}{}
464 \lineiii{\var{s}.pop(\optional{\var{i}})}
465 {same as \code{\var{x} = \var{s}[\var{i}]; del \var{s}[\var{i}]; return \var{x}}}{(4)}
466 \lineiii{\var{s}.remove(\var{x})}
467 {same as \code{del \var{s}[\var{s}.index(\var{x})]}}{(1)}
468 \lineiii{\var{s}.reverse()}
469 {reverses the items of \var{s} in place}{(3)}
470 \lineiii{\var{s}.sort(\optional{\var{cmpfunc}})}
471 {sort the items of \var{s} in place}{(2), (3)}
472\end{tableiii}
473\indexiv{operations on}{mutable}{sequence}{types}
474\indexiii{operations on}{sequence}{types}
475\indexiii{operations on}{list}{type}
476\indexii{subscript}{assignment}
477\indexii{slice}{assignment}
478\stindex{del}
Fred Drake7a2f0661998-09-10 18:25:58 +0000479\withsubitem{(list method)}{%
480 \ttindex{append}%
Barry Warsawafd974c1998-10-09 16:39:58 +0000481 \ttindex{extend}%
Fred Drake7a2f0661998-09-10 18:25:58 +0000482 \ttindex{count}%
483 \ttindex{index}%
484 \ttindex{insert}%
485 \ttindex{pop}%
486 \ttindex{remove}%
487 \ttindex{reverse}%
488 \ttindex{sort}%
489}
Fred Drake64e3b431998-07-24 13:56:11 +0000490\noindent
491Notes:
492\begin{description}
493\item[(1)] Raises an exception when \var{x} is not found in \var{s}.
494
495\item[(2)] The \code{sort()} method takes an optional argument
496 specifying a comparison function of two arguments (list items) which
497 should return \code{-1}, \code{0} or \code{1} depending on whether the
498 first argument is considered smaller than, equal to, or larger than the
499 second argument. Note that this slows the sorting process down
500 considerably; e.g. to sort a list in reverse order it is much faster
501 to use calls to \code{sort()} and \code{reverse()} than to use
502 \code{sort()} with a comparison function that reverses the ordering of
503 the elements.
504
505\item[(3)] The \code{sort()} and \code{reverse()} methods modify the
506list in place for economy of space when sorting or reversing a large
507list. They don't return the sorted or reversed list to remind you of
508this side effect.
509
510\item[(4)] The \method{pop()} method is experimental and not supported
511by other mutable sequence types than lists.
512The optional argument \var{i} defaults to \code{-1}, so that
513by default the last item is removed and returned.
514
Barry Warsawafd974c1998-10-09 16:39:58 +0000515\item[(5)] Raises an exception when \var{x} is not a list object. The
516\method{extend()} method is experimental and not supported by mutable types
517other than lists.
Fred Drake64e3b431998-07-24 13:56:11 +0000518\end{description}
519
520
Fred Drake7a2f0661998-09-10 18:25:58 +0000521\subsection{Mapping Types \label{typesmapping}}
Fred Drake64e3b431998-07-24 13:56:11 +0000522
523A \dfn{mapping} object maps values of one type (the key type) to
524arbitrary objects. Mappings are mutable objects. There is currently
525only one standard mapping type, the \dfn{dictionary}. A dictionary's keys are
526almost arbitrary values. The only types of values not acceptable as
527keys are values containing lists or dictionaries or other mutable
528types that are compared by value rather than by object identity.
529Numeric types used for keys obey the normal rules for numeric
530comparison: if two numbers compare equal (e.g. \code{1} and
531\code{1.0}) then they can be used interchangeably to index the same
532dictionary entry.
533
534\indexii{mapping}{types}
535\indexii{dictionary}{type}
536
537Dictionaries are created by placing a comma-separated list of
538\code{\var{key}: \var{value}} pairs within braces, for example:
539\code{\{'jack': 4098, 'sjoerd': 4127\}} or
540\code{\{4098: 'jack', 4127: 'sjoerd'\}}.
541
542The following operations are defined on mappings (where \var{a} is a
543mapping, \var{k} is a key and \var{x} is an arbitrary object):
544
545\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
546 \lineiii{len(\var{a})}{the number of items in \var{a}}{}
547 \lineiii{\var{a}[\var{k}]}{the item of \var{a} with key \var{k}}{(1)}
548 \lineiii{\var{a}[\var{k}] = \var{x}}{set \code{\var{a}[\var{k}]} to \var{x}}{}
549 \lineiii{del \var{a}[\var{k}]}{remove \code{\var{a}[\var{k}]} from \var{a}}{(1)}
550 \lineiii{\var{a}.clear()}{remove all items from \code{a}}{}
551 \lineiii{\var{a}.copy()}{a (shallow) copy of \code{a}}{}
552 \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 +0000553 \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 +0000554 \lineiii{\var{a}.keys()}{a copy of \var{a}'s list of keys}{(2)}
555 \lineiii{\var{a}.update(\var{b})}{\code{for k, v in \var{b}.items(): \var{a}[k] = v}}{(3)}
556 \lineiii{\var{a}.values()}{a copy of \var{a}'s list of values}{(2)}
Fred Drake7a2f0661998-09-10 18:25:58 +0000557 \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 +0000558\end{tableiii}
559\indexiii{operations on}{mapping}{types}
560\indexiii{operations on}{dictionary}{type}
561\stindex{del}
562\bifuncindex{len}
Fred Drake7a2f0661998-09-10 18:25:58 +0000563\withsubitem{(dictionary method)}{%
564 \ttindex{clear}%
565 \ttindex{copy}%
566 \ttindex{has_key}%
567 \ttindex{items}%
568 \ttindex{keys}%
569 \ttindex{update}%
570 \ttindex{values}%
571 \ttindex{get}%
572}
Fred Drake64e3b431998-07-24 13:56:11 +0000573\noindent
574Notes:
575\begin{description}
576\item[(1)] Raises an exception if \var{k} is not in the map.
577
578\item[(2)] Keys and values are listed in random order.
579
580\item[(3)] \var{b} must be of the same type as \var{a}.
581
582\item[(4)] Never raises an exception if \var{k} is not in the map,
583instead it returns \var{f}. \var{f} is optional, when not provided
584and \var{k} is not in the map, \code{None} is returned.
585\end{description}
586
587
Fred Drake7a2f0661998-09-10 18:25:58 +0000588\subsection{Other Built-in Types \label{typesother}}
Fred Drake64e3b431998-07-24 13:56:11 +0000589
590The interpreter supports several other kinds of objects.
591Most of these support only one or two operations.
592
593\subsubsection{Modules}
594
595The only special operation on a module is attribute access:
596\code{\var{m}.\var{name}}, where \var{m} is a module and \var{name}
597accesses a name defined in \var{m}'s symbol table. Module attributes
598can be assigned to. (Note that the \code{import} statement is not,
Fred Draked0421dd1998-08-24 17:57:20 +0000599strictly speaking, an operation on a module object; \code{import
Fred Drake64e3b431998-07-24 13:56:11 +0000600\var{foo}} does not require a module object named \var{foo} to exist,
601rather it requires an (external) \emph{definition} for a module named
602\var{foo} somewhere.)
603
604A special member of every module is \code{__dict__}.
605This is the dictionary containing the module's symbol table.
606Modifying this dictionary will actually change the module's symbol
607table, but direct assignment to the \code{__dict__} attribute is not
608possible (i.e., you can write \code{\var{m}.__dict__['a'] = 1}, which
609defines \code{\var{m}.a} to be \code{1}, but you can't write
610\code{\var{m}.__dict__ = \{\}}.
611
612Modules are written like this: \code{<module 'sys'>}.
613
614\subsubsection{Classes and Class Instances}
615\nodename{Classes and Instances}
616
617See Chapters 3 and 7 of the \emph{Python Reference Manual} for these.
618
619\subsubsection{Functions}
620
621Function objects are created by function definitions. The only
622operation on a function object is to call it:
623\code{\var{func}(\var{argument-list})}.
624
625There are really two flavors of function objects: built-in functions
626and user-defined functions. Both support the same operation (to call
627the function), but the implementation is different, hence the
628different object types.
629
630The implementation adds two special read-only attributes:
631\code{\var{f}.func_code} is a function's \dfn{code
632object}\obindex{code} (see below) and \code{\var{f}.func_globals} is
633the dictionary used as the function's global name space (this is the
634same as \code{\var{m}.__dict__} where \var{m} is the module in which
635the function \var{f} was defined).
636
637
638\subsubsection{Methods}
639\obindex{method}
640
641Methods are functions that are called using the attribute notation.
642There are two flavors: built-in methods (such as \code{append()} on
643lists) and class instance methods. Built-in methods are described
644with the types that support them.
645
646The implementation adds two special read-only attributes to class
Fred Draked0421dd1998-08-24 17:57:20 +0000647instance methods: \code{\var{m}.im_self} is the object on which the
648method operates, and \code{\var{m}.im_func} is the function
649implementing the method. Calling \code{\var{m}(\var{arg-1},
650\var{arg-2}, {\rm \ldots}, \var{arg-n})} is completely equivalent to
651calling \code{\var{m}.im_func(\var{m}.im_self, \var{arg-1},
652\var{arg-2}, {\rm \ldots}, \var{arg-n})}.
Fred Drake64e3b431998-07-24 13:56:11 +0000653
654See the \emph{Python Reference Manual} for more information.
655
Fred Drake7a2f0661998-09-10 18:25:58 +0000656
657\subsubsection{Code Objects \label{bltin-code-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000658\obindex{code}
659
660Code objects are used by the implementation to represent
661``pseudo-compiled'' executable Python code such as a function body.
662They differ from function objects because they don't contain a
663reference to their global execution environment. Code objects are
664returned by the built-in \code{compile()} function and can be
665extracted from function objects through their \code{func_code}
666attribute.
667\bifuncindex{compile}
Fred Drake7a2f0661998-09-10 18:25:58 +0000668\withsubitem{(code object attribute)}{\ttindex{func_code}}
Fred Drake64e3b431998-07-24 13:56:11 +0000669
670A code object can be executed or evaluated by passing it (instead of a
671source string) to the \code{exec} statement or the built-in
672\code{eval()} function.
673\stindex{exec}
674\bifuncindex{eval}
675
676See the \emph{Python Reference Manual} for more information.
677
Fred Drake7a2f0661998-09-10 18:25:58 +0000678
679\subsubsection{Type Objects \label{bltin-type-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000680
681Type objects represent the various object types. An object's type is
682accessed by the built-in function \code{type()}. There are no special
683operations on types. The standard module \code{types} defines names
684for all standard built-in types.
685\bifuncindex{type}
686\refstmodindex{types}
687
688Types are written like this: \code{<type 'int'>}.
689
Fred Drake7a2f0661998-09-10 18:25:58 +0000690
691\subsubsection{The Null Object \label{bltin-null-object}}
Fred Drake64e3b431998-07-24 13:56:11 +0000692
693This object is returned by functions that don't explicitly return a
694value. It supports no special operations. There is exactly one null
695object, named \code{None} (a built-in name).
696
697It is written as \code{None}.
698
Fred Drake7a2f0661998-09-10 18:25:58 +0000699
700\subsubsection{The Ellipsis Object \label{bltin-ellipsis-object}}
Guido van Rossumb193c951998-07-24 15:02:02 +0000701
702This object is used by extended slice notation (see the \emph{Python
703Reference Manual}). It supports no special operations. There is
704exactly one ellipsis object, named \code{Ellipsis} (a built-in name).
705
706It is written as \code{Ellipsis}.
707
Fred Drake7a2f0661998-09-10 18:25:58 +0000708\subsubsection{File Objects \label{bltin-file-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000709
710File objects are implemented using \C{}'s \code{stdio} package and can be
Fred Drake130072d1998-10-28 20:08:35 +0000711created with the built-in function \function{open()} described Section
712\ref{built-in-funcs}, ``Built-in Functions.'' They are also returned
713by some other built-in functions and methods, e.g.,
714\function{posix.popen()} and \function{posix.fdopen()} and the
715\method{makefile()} method of socket objects.
Fred Drake64e3b431998-07-24 13:56:11 +0000716\bifuncindex{open}
717\refbimodindex{posix}
718\refbimodindex{socket}
719
720When a file operation fails for an I/O-related reason, the exception
721\code{IOError} is raised. This includes situations where the
722operation is not defined for some reason, like \code{seek()} on a tty
723device or writing a file opened for reading.
724
725Files have the following methods:
726
727
728\begin{methoddesc}[file]{close}{}
729 Close the file. A closed file cannot be read or written anymore.
730\end{methoddesc}
731
732\begin{methoddesc}[file]{flush}{}
733 Flush the internal buffer, like \code{stdio}'s \code{fflush()}.
734\end{methoddesc}
735
736\begin{methoddesc}[file]{isatty}{}
737 Return \code{1} if the file is connected to a tty(-like) device, else
738 \code{0}.
739\end{methoddesc}
740
741\begin{methoddesc}[file]{fileno}{}
742Return the integer ``file descriptor'' that is used by the underlying
743implementation to request I/O operations from the operating system.
744This can be useful for other, lower level interfaces that use file
745descriptors, e.g. module \code{fcntl} or \code{os.read()} and friends.
746\refbimodindex{fcntl}
747\end{methoddesc}
748
749\begin{methoddesc}[file]{read}{\optional{size}}
750 Read at most \var{size} bytes from the file (less if the read hits
751 \EOF{} or no more data is immediately available on a pipe, tty or
752 similar device). If the \var{size} argument is negative or omitted,
753 read all data until \EOF{} is reached. The bytes are returned as a string
754 object. An empty string is returned when \EOF{} is encountered
755 immediately. (For certain files, like ttys, it makes sense to
756 continue reading after an \EOF{} is hit.)
757\end{methoddesc}
758
759\begin{methoddesc}[file]{readline}{\optional{size}}
760 Read one entire line from the file. A trailing newline character is
761 kept in the string%
762\footnote{The advantage of leaving the newline on is that an empty string
763 can be returned to mean \EOF{} without being ambiguous. Another
764 advantage is that (in cases where it might matter, e.g. if you
765 want to make an exact copy of a file while scanning its lines)
766 you can tell whether the last line of a file ended in a newline
767 or not (yes this happens!).}
768 (but may be absent when a file ends with an
769 incomplete line). If the \var{size} argument is present and
770 non-negative, it is a maximum byte count (including the trailing
771 newline) and an incomplete line may be returned.
772 An empty string is returned when \EOF{} is hit
773 immediately. Note: unlike \code{stdio}'s \cfunction{fgets()}, the returned
774 string contains null characters (\code{'\e 0'}) if they occurred in the
775 input.
776\end{methoddesc}
777
778\begin{methoddesc}[file]{readlines}{\optional{sizehint}}
779 Read until \EOF{} using \method{readline()} and return a list containing
780 the lines thus read. If the optional \var{sizehint} argument is
781 present, instead of reading up to \EOF{}, whole lines totalling
782 approximately \var{sizehint} bytes (possibly after rounding up to an
783 internal buffer size) are read.
784\end{methoddesc}
785
786\begin{methoddesc}[file]{seek}{offset\optional{, whence}}
787 Set the file's current position, like \code{stdio}'s \cfunction{fseek()}.
788 The \var{whence} argument is optional and defaults to \code{0}
789 (absolute file positioning); other values are \code{1} (seek
790 relative to the current position) and \code{2} (seek relative to the
791 file's end). There is no return value.
792\end{methoddesc}
793
794\begin{methoddesc}[file]{tell}{}
795 Return the file's current position, like \code{stdio}'s
796 \cfunction{ftell()}.
797\end{methoddesc}
798
799\begin{methoddesc}[file]{truncate}{\optional{size}}
800Truncate the file's size. If the optional size argument present, the
801file is truncated to (at most) that size. The size defaults to the
802current position. Availability of this function depends on the
803operating system version (e.g., not all \UNIX{} versions support this
804operation).
805\end{methoddesc}
806
807\begin{methoddesc}[file]{write}{str}
808Write a string to the file. There is no return value. Note: due to
809buffering, the string may not actually show up in the file until
810the \method{flush()} or \method{close()} method is called.
811\end{methoddesc}
812
813\begin{methoddesc}[file]{writelines}{list}
814Write a list of strings to the file. There is no return value.
815(The name is intended to match \method{readlines()};
816\method{writelines()} does not add line separators.)
817\end{methoddesc}
818
819
820File objects also offer the following attributes:
821
822\begin{memberdesc}[file]{closed}
823Boolean indicating the current state of the file object. This is a
824read-only attribute; the \method{close()} method changes the value.
825\end{memberdesc}
826
827\begin{memberdesc}[file]{mode}
828The I/O mode for the file. If the file was created using the
829\function{open()} built-in function, this will be the value of the
830\var{mode} parameter. This is a read-only attribute.
831\end{memberdesc}
832
833\begin{memberdesc}[file]{name}
834If the file object was created using \function{open()}, the name of
835the file. Otherwise, some string that indicates the source of the
836file object, of the form \samp{<\mbox{\ldots}>}. This is a read-only
837attribute.
838\end{memberdesc}
839
840\begin{memberdesc}[file]{softspace}
841Boolean that indicates whether a space character needs to be printed
842before another value when using the \keyword{print} statement.
843Classes that are trying to simulate a file object should also have a
844writable \member{softspace} attribute, which should be initialized to
845zero. This will be automatic for classes implemented in Python; types
846implemented in \C{} will have to provide a writable \member{softspace}
847attribute.
848\end{memberdesc}
849
850\subsubsection{Internal Objects}
851
852See the \emph{Python Reference Manual} for this information. It
853describes code objects, stack frame objects, traceback objects, and
854slice objects.
855
856
Fred Drake7a2f0661998-09-10 18:25:58 +0000857\subsection{Special Attributes \label{specialattrs}}
Fred Drake64e3b431998-07-24 13:56:11 +0000858
859The implementation adds a few special read-only attributes to several
860object types, where they are relevant:
861
Fred Drake7a2f0661998-09-10 18:25:58 +0000862\begin{memberdescni}{__dict__}
863A dictionary of some sort used to store an
864object's (writable) attributes.
865\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000866
Fred Drake7a2f0661998-09-10 18:25:58 +0000867\begin{memberdescni}{__methods__}
868List of the methods of many built-in object types,
Fred Drake64e3b431998-07-24 13:56:11 +0000869e.g., \code{[].__methods__} yields
Fred Drake7a2f0661998-09-10 18:25:58 +0000870\code{['append', 'count', 'index', 'insert', 'pop', 'remove',
871'reverse', 'sort']}.
872\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000873
Fred Drake7a2f0661998-09-10 18:25:58 +0000874\begin{memberdescni}{__members__}
875Similar to \member{__methods__}, but lists data attributes.
876\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000877
Fred Drake7a2f0661998-09-10 18:25:58 +0000878\begin{memberdescni}{__class__}
879The class to which a class instance belongs.
880\end{memberdescni}
Fred Drake64e3b431998-07-24 13:56:11 +0000881
Fred Drake7a2f0661998-09-10 18:25:58 +0000882\begin{memberdescni}{__bases__}
883The tuple of base classes of a class object.
884\end{memberdescni}