blob: fc17785a0eff9340da18bfe0e400efe473757c3b [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
Fred Drake38e5d272000-04-03 20:13:55 +000033\item zero of any numeric type, for example, \code{0}, \code{0L},
34 \code{0.0}, \code{0j}.
Fred Drake64e3b431998-07-24 13:56:11 +000035
Fred Drake38e5d272000-04-03 20:13:55 +000036\item any empty sequence, for example, \code{''}, \code{()}, \code{[]}.
Fred Drake64e3b431998-07-24 13:56:11 +000037
Fred Drake38e5d272000-04-03 20:13:55 +000038\item any empty mapping, for example, \code{\{\}}.
Fred Drake64e3b431998-07-24 13:56:11 +000039
40\item instances of user-defined classes, if the class defines a
Fred Drake7a2f0661998-09-10 18:25:58 +000041 \method{__nonzero__()} or \method{__len__()} method, when that
Fred Drake38e5d272000-04-03 20:13:55 +000042 method returns zero.\footnote{Additional information on these
Fred Drake66571cc2000-09-09 03:30:34 +000043special methods may be found in the \citetitle[../ref/ref.html]{Python
44Reference Manual}.}
Fred Drake64e3b431998-07-24 13:56:11 +000045
46\end{itemize}
47
48All other values are considered true --- so objects of many types are
49always true.
50\index{true}
51
52Operations and built-in functions that have a Boolean result always
53return \code{0} for false and \code{1} for true, unless otherwise
54stated. (Important exception: the Boolean operations
55\samp{or}\opindex{or} and \samp{and}\opindex{and} always return one of
56their operands.)
57
58
Fred Drake7a2f0661998-09-10 18:25:58 +000059\subsection{Boolean Operations \label{boolean}}
Fred Drake64e3b431998-07-24 13:56:11 +000060
61These are the Boolean operations, ordered by ascending priority:
62\indexii{Boolean}{operations}
63
64\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
Fred Drake8c071d42001-01-26 20:48:35 +000065 \lineiii{\var{x} or \var{y}}
66 {if \var{x} is false, then \var{y}, else \var{x}}{(1)}
67 \lineiii{\var{x} and \var{y}}
68 {if \var{x} is false, then \var{x}, else \var{y}}{(1)}
Fred Drake64e3b431998-07-24 13:56:11 +000069 \hline
Fred Drake8c071d42001-01-26 20:48:35 +000070 \lineiii{not \var{x}}
71 {if \var{x} is false, then \code{1}, else \code{0}}{(2)}
Fred Drake64e3b431998-07-24 13:56:11 +000072\end{tableiii}
73\opindex{and}
74\opindex{or}
75\opindex{not}
76
77\noindent
78Notes:
79
80\begin{description}
81
82\item[(1)]
83These only evaluate their second argument if needed for their outcome.
84
85\item[(2)]
Fred Drake38e5d272000-04-03 20:13:55 +000086\samp{not} has a lower priority than non-Boolean operators, so
87\code{not \var{a} == \var{b}} is interpreted as \code{not (\var{a} ==
88\var{b})}, and \code{\var{a} == not \var{b}} is a syntax error.
Fred Drake64e3b431998-07-24 13:56:11 +000089
90\end{description}
91
92
Fred Drake7a2f0661998-09-10 18:25:58 +000093\subsection{Comparisons \label{comparisons}}
Fred Drake64e3b431998-07-24 13:56:11 +000094
95Comparison operations are supported by all objects. They all have the
96same priority (which is higher than that of the Boolean operations).
Fred Drake38e5d272000-04-03 20:13:55 +000097Comparisons can be chained arbitrarily; for example, \code{\var{x} <
98\var{y} <= \var{z}} is equivalent to \code{\var{x} < \var{y} and
99\var{y} <= \var{z}}, except that \var{y} is evaluated only once (but
100in both cases \var{z} is not evaluated at all when \code{\var{x} <
101\var{y}} is found to be false).
Fred Drake64e3b431998-07-24 13:56:11 +0000102\indexii{chaining}{comparisons}
103
104This table summarizes the comparison operations:
105
106\begin{tableiii}{c|l|c}{code}{Operation}{Meaning}{Notes}
107 \lineiii{<}{strictly less than}{}
108 \lineiii{<=}{less than or equal}{}
109 \lineiii{>}{strictly greater than}{}
110 \lineiii{>=}{greater than or equal}{}
111 \lineiii{==}{equal}{}
Fred Drake64e3b431998-07-24 13:56:11 +0000112 \lineiii{!=}{not equal}{(1)}
Fred Drake512bb722000-08-18 03:12:38 +0000113 \lineiii{<>}{not equal}{(1)}
Fred Drake64e3b431998-07-24 13:56:11 +0000114 \lineiii{is}{object identity}{}
115 \lineiii{is not}{negated object identity}{}
116\end{tableiii}
117\indexii{operator}{comparison}
118\opindex{==} % XXX *All* others have funny characters < ! >
119\opindex{is}
120\opindex{is not}
121
122\noindent
123Notes:
124
125\begin{description}
126
127\item[(1)]
128\code{<>} and \code{!=} are alternate spellings for the same operator.
Fred Drake4de96c22000-08-12 03:36:23 +0000129(I couldn't choose between \ABC{} and C! :-)
Fred Drake64e3b431998-07-24 13:56:11 +0000130\index{ABC language@\ABC{} language}
131\index{language!ABC@\ABC{}}
Fred Drake4de96c22000-08-12 03:36:23 +0000132\indexii{C}{language}
Fred Drake38e5d272000-04-03 20:13:55 +0000133\code{!=} is the preferred spelling; \code{<>} is obsolescent.
Fred Drake64e3b431998-07-24 13:56:11 +0000134
135\end{description}
136
137Objects of different types, except different numeric types, never
138compare equal; such objects are ordered consistently but arbitrarily
139(so that sorting a heterogeneous array yields a consistent result).
Fred Drake38e5d272000-04-03 20:13:55 +0000140Furthermore, some types (for example, file objects) support only a
141degenerate notion of comparison where any two objects of that type are
142unequal. Again, such objects are ordered arbitrarily but
143consistently.
144\indexii{object}{numeric}
Fred Drake64e3b431998-07-24 13:56:11 +0000145\indexii{objects}{comparing}
146
Fred Drake38e5d272000-04-03 20:13:55 +0000147Instances of a class normally compare as non-equal unless the class
148\withsubitem{(instance method)}{\ttindex{__cmp__()}}
Fred Drake66571cc2000-09-09 03:30:34 +0000149defines the \method{__cmp__()} method. Refer to the
150\citetitle[../ref/customization.html]{Python Reference Manual} for
151information on the use of this method to effect object comparisons.
Fred Drake64e3b431998-07-24 13:56:11 +0000152
Fred Drake38e5d272000-04-03 20:13:55 +0000153\strong{Implementation note:} Objects of different types except
154numbers are ordered by their type names; objects of the same types
155that don't support proper comparison are ordered by their address.
156
157Two more operations with the same syntactic priority,
158\samp{in}\opindex{in} and \samp{not in}\opindex{not in}, are supported
159only by sequence types (below).
Fred Drake64e3b431998-07-24 13:56:11 +0000160
161
Fred Drake7a2f0661998-09-10 18:25:58 +0000162\subsection{Numeric Types \label{typesnumeric}}
Fred Drake64e3b431998-07-24 13:56:11 +0000163
164There are four numeric types: \dfn{plain integers}, \dfn{long integers},
165\dfn{floating point numbers}, and \dfn{complex numbers}.
166Plain integers (also just called \dfn{integers})
Fred Drake38e5d272000-04-03 20:13:55 +0000167are implemented using \ctype{long} in C, which gives them at least 32
Fred Drake64e3b431998-07-24 13:56:11 +0000168bits of precision. Long integers have unlimited precision. Floating
Fred Drake38e5d272000-04-03 20:13:55 +0000169point numbers are implemented using \ctype{double} in C. All bets on
Fred Drake64e3b431998-07-24 13:56:11 +0000170their precision are off unless you happen to know the machine you are
171working with.
Fred Drake0b4e25d2000-10-04 04:21:19 +0000172\obindex{numeric}
173\obindex{integer}
174\obindex{long integer}
175\obindex{floating point}
176\obindex{complex number}
Fred Drake38e5d272000-04-03 20:13:55 +0000177\indexii{C}{language}
Fred Drake64e3b431998-07-24 13:56:11 +0000178
179Complex numbers have a real and imaginary part, which are both
Fred Drake38e5d272000-04-03 20:13:55 +0000180implemented using \ctype{double} in C. To extract these parts from
Fred Drake64e3b431998-07-24 13:56:11 +0000181a complex number \var{z}, use \code{\var{z}.real} and \code{\var{z}.imag}.
182
183Numbers are created by numeric literals or as the result of built-in
184functions and operators. Unadorned integer literals (including hex
Fred Drake38e5d272000-04-03 20:13:55 +0000185and octal numbers) yield plain integers. Integer literals with an
186\character{L} or \character{l} suffix yield long integers
187(\character{L} is preferred because \samp{1l} looks too much like
188eleven!). Numeric literals containing a decimal point or an exponent
189sign yield floating point numbers. Appending \character{j} or
190\character{J} to a numeric literal yields a complex number.
Fred Drake64e3b431998-07-24 13:56:11 +0000191\indexii{numeric}{literals}
192\indexii{integer}{literals}
193\indexiii{long}{integer}{literals}
194\indexii{floating point}{literals}
195\indexii{complex number}{literals}
196\indexii{hexadecimal}{literals}
197\indexii{octal}{literals}
198
199Python fully supports mixed arithmetic: when a binary arithmetic
200operator has operands of different numeric types, the operand with the
201``smaller'' type is converted to that of the other, where plain
202integer is smaller than long integer is smaller than floating point is
203smaller than complex.
Fred Drakeea003fc1999-04-05 21:59:15 +0000204Comparisons between numbers of mixed type use the same rule.\footnote{
205 As a consequence, the list \code{[1, 2]} is considered equal
Fred Drake82ac24f1999-07-02 14:29:14 +0000206 to \code{[1.0, 2.0]}, and similar for tuples.
207} The functions \function{int()}, \function{long()}, \function{float()},
Fred Drake84538cd1998-11-30 21:51:25 +0000208and \function{complex()} can be used
Fred Drake64e3b431998-07-24 13:56:11 +0000209to coerce numbers to a specific type.
210\index{arithmetic}
211\bifuncindex{int}
212\bifuncindex{long}
213\bifuncindex{float}
214\bifuncindex{complex}
215
216All numeric types support the following operations, sorted by
217ascending priority (operations in the same box have the same
218priority; all numeric operations have a higher priority than
219comparison operations):
220
221\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
222 \lineiii{\var{x} + \var{y}}{sum of \var{x} and \var{y}}{}
223 \lineiii{\var{x} - \var{y}}{difference of \var{x} and \var{y}}{}
224 \hline
225 \lineiii{\var{x} * \var{y}}{product of \var{x} and \var{y}}{}
226 \lineiii{\var{x} / \var{y}}{quotient of \var{x} and \var{y}}{(1)}
227 \lineiii{\var{x} \%{} \var{y}}{remainder of \code{\var{x} / \var{y}}}{}
228 \hline
229 \lineiii{-\var{x}}{\var{x} negated}{}
230 \lineiii{+\var{x}}{\var{x} unchanged}{}
231 \hline
232 \lineiii{abs(\var{x})}{absolute value or magnitude of \var{x}}{}
233 \lineiii{int(\var{x})}{\var{x} converted to integer}{(2)}
234 \lineiii{long(\var{x})}{\var{x} converted to long integer}{(2)}
235 \lineiii{float(\var{x})}{\var{x} converted to floating point}{}
236 \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 +0000237 \lineiii{\var{c}.conjugate()}{conjugate of the complex number \var{c}}{}
Fred Drake64e3b431998-07-24 13:56:11 +0000238 \lineiii{divmod(\var{x}, \var{y})}{the pair \code{(\var{x} / \var{y}, \var{x} \%{} \var{y})}}{(3)}
239 \lineiii{pow(\var{x}, \var{y})}{\var{x} to the power \var{y}}{}
240 \lineiii{\var{x} ** \var{y}}{\var{x} to the power \var{y}}{}
241\end{tableiii}
242\indexiii{operations on}{numeric}{types}
Fred Drake26b698f1999-02-12 18:27:31 +0000243\withsubitem{(complex number method)}{\ttindex{conjugate()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000244
245\noindent
246Notes:
247\begin{description}
248
249\item[(1)]
250For (plain or long) integer division, the result is an integer.
251The result is always rounded towards minus infinity: 1/2 is 0,
Fred Drake38e5d272000-04-03 20:13:55 +0000252(-1)/2 is -1, 1/(-2) is -1, and (-1)/(-2) is 0. Note that the result
253is a long integer if either operand is a long integer, regardless of
254the numeric value.
Fred Drake64e3b431998-07-24 13:56:11 +0000255\indexii{integer}{division}
256\indexiii{long}{integer}{division}
257
258\item[(2)]
259Conversion from floating point to (long or plain) integer may round or
Fred Drake4de96c22000-08-12 03:36:23 +0000260truncate as in C; see functions \function{floor()} and
261\function{ceil()} in the \refmodule{math}\refbimodindex{math} module
262for well-defined conversions.
Fred Drake9474d861999-02-12 22:05:33 +0000263\withsubitem{(in module math)}{\ttindex{floor()}\ttindex{ceil()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000264\indexii{numeric}{conversions}
Fred Drake4de96c22000-08-12 03:36:23 +0000265\indexii{C}{language}
Fred Drake64e3b431998-07-24 13:56:11 +0000266
267\item[(3)]
Fred Drake38e5d272000-04-03 20:13:55 +0000268See section \ref{built-in-funcs}, ``Built-in Functions,'' for a full
269description.
Fred Drake64e3b431998-07-24 13:56:11 +0000270
271\end{description}
272% XXXJH exceptions: overflow (when? what operations?) zerodivision
273
Fred Drake4e7c2051999-02-19 15:30:25 +0000274\subsubsection{Bit-string Operations on Integer Types \label{bitstring-ops}}
Fred Drake64e3b431998-07-24 13:56:11 +0000275\nodename{Bit-string Operations}
276
277Plain and long integer types support additional operations that make
278sense only for bit-strings. Negative numbers are treated as their 2's
279complement value (for long integers, this assumes a sufficiently large
280number of bits that no overflow occurs during the operation).
281
282The priorities of the binary bit-wise operations are all lower than
283the numeric operations and higher than the comparisons; the unary
284operation \samp{\~} has the same priority as the other unary numeric
285operations (\samp{+} and \samp{-}).
286
287This table lists the bit-string operations sorted in ascending
288priority (operations in the same box have the same priority):
289
290\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
291 \lineiii{\var{x} | \var{y}}{bitwise \dfn{or} of \var{x} and \var{y}}{}
292 \lineiii{\var{x} \^{} \var{y}}{bitwise \dfn{exclusive or} of \var{x} and \var{y}}{}
293 \lineiii{\var{x} \&{} \var{y}}{bitwise \dfn{and} of \var{x} and \var{y}}{}
294 \lineiii{\var{x} << \var{n}}{\var{x} shifted left by \var{n} bits}{(1), (2)}
295 \lineiii{\var{x} >> \var{n}}{\var{x} shifted right by \var{n} bits}{(1), (3)}
296 \hline
297 \lineiii{\~\var{x}}{the bits of \var{x} inverted}{}
298\end{tableiii}
299\indexiii{operations on}{integer}{types}
300\indexii{bit-string}{operations}
301\indexii{shifting}{operations}
302\indexii{masking}{operations}
303
304\noindent
305Notes:
306\begin{description}
307\item[(1)] Negative shift counts are illegal and cause a
308\exception{ValueError} to be raised.
309\item[(2)] A left shift by \var{n} bits is equivalent to
310multiplication by \code{pow(2, \var{n})} without overflow check.
311\item[(3)] A right shift by \var{n} bits is equivalent to
312division by \code{pow(2, \var{n})} without overflow check.
313\end{description}
314
315
Fred Drake7a2f0661998-09-10 18:25:58 +0000316\subsection{Sequence Types \label{typesseq}}
Fred Drake64e3b431998-07-24 13:56:11 +0000317
Fred Drake107b9672000-08-14 15:37:59 +0000318There are six sequence types: strings, Unicode strings, lists,
Fred Drake512bb722000-08-18 03:12:38 +0000319tuples, buffers, and xrange objects.
Fred Drake64e3b431998-07-24 13:56:11 +0000320
321Strings literals are written in single or double quotes:
Fred Drake38e5d272000-04-03 20:13:55 +0000322\code{'xyzzy'}, \code{"frobozz"}. See chapter 2 of the
Fred Drake4de96c22000-08-12 03:36:23 +0000323\citetitle[../ref/strings.html]{Python Reference Manual} for more about
324string literals. Unicode strings are much like strings, but are
325specified in the syntax using a preceeding \character{u} character:
326\code{u'abc'}, \code{u"def"}. Lists are constructed with square brackets,
Fred Drake37f15741999-11-10 16:21:37 +0000327separating items with commas: \code{[a, b, c]}. Tuples are
328constructed by the comma operator (not within square brackets), with
329or without enclosing parentheses, but an empty tuple must have the
330enclosing parentheses, e.g., \code{a, b, c} or \code{()}. A single
Fred Drake4de96c22000-08-12 03:36:23 +0000331item tuple must have a trailing comma, e.g., \code{(d,)}. Buffers are
Fred Drakefffe5db2000-09-21 05:25:30 +0000332not directly supported by Python syntax, but can be created by calling the
Fred Drake512bb722000-08-18 03:12:38 +0000333builtin function \function{buffer()}.\bifuncindex{buffer} XRanges
334objects are similar to buffers in that there is no specific syntax to
335create them, but they are created using the \function{xrange()}
Fred Drake107b9672000-08-14 15:37:59 +0000336function.\bifuncindex{xrange}
Fred Drake0b4e25d2000-10-04 04:21:19 +0000337\obindex{sequence}
338\obindex{string}
339\obindex{Unicode}
340\obindex{buffer}
341\obindex{tuple}
342\obindex{list}
343\obindex{xrange}
Fred Drake64e3b431998-07-24 13:56:11 +0000344
345Sequence types support the following operations. The \samp{in} and
346\samp{not in} operations have the same priorities as the comparison
347operations. The \samp{+} and \samp{*} operations have the same
348priority as the corresponding numeric operations.\footnote{They must
349have since the parser can't tell the type of the operands.}
350
351This table lists the sequence operations sorted in ascending priority
352(operations in the same box have the same priority). In the table,
353\var{s} and \var{t} are sequences of the same type; \var{n}, \var{i}
354and \var{j} are integers:
355
356\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
357 \lineiii{\var{x} in \var{s}}{\code{1} if an item of \var{s} is equal to \var{x}, else \code{0}}{}
358 \lineiii{\var{x} not in \var{s}}{\code{0} if an item of \var{s} is
359equal to \var{x}, else \code{1}}{}
360 \hline
361 \lineiii{\var{s} + \var{t}}{the concatenation of \var{s} and \var{t}}{}
Fred Drake38e5d272000-04-03 20:13:55 +0000362 \lineiii{\var{s} * \var{n}\textrm{,} \var{n} * \var{s}}{\var{n} copies of \var{s} concatenated}{(1)}
Fred Drake64e3b431998-07-24 13:56:11 +0000363 \hline
Fred Drake38e5d272000-04-03 20:13:55 +0000364 \lineiii{\var{s}[\var{i}]}{\var{i}'th item of \var{s}, origin 0}{(2)}
365 \lineiii{\var{s}[\var{i}:\var{j}]}{slice of \var{s} from \var{i} to \var{j}}{(2), (3)}
Fred Drake64e3b431998-07-24 13:56:11 +0000366 \hline
367 \lineiii{len(\var{s})}{length of \var{s}}{}
368 \lineiii{min(\var{s})}{smallest item of \var{s}}{}
369 \lineiii{max(\var{s})}{largest item of \var{s}}{}
370\end{tableiii}
371\indexiii{operations on}{sequence}{types}
372\bifuncindex{len}
373\bifuncindex{min}
374\bifuncindex{max}
375\indexii{concatenation}{operation}
376\indexii{repetition}{operation}
377\indexii{subscript}{operation}
378\indexii{slice}{operation}
379\opindex{in}
380\opindex{not in}
381
382\noindent
383Notes:
384
385\begin{description}
Fred Drake38e5d272000-04-03 20:13:55 +0000386\item[(1)] Values of \var{n} less than \code{0} are treated as
387 \code{0} (which yields an empty sequence of the same type as
388 \var{s}).
389
390\item[(2)] If \var{i} or \var{j} is negative, the index is relative to
Fred Drake64e3b431998-07-24 13:56:11 +0000391 the end of the string, i.e., \code{len(\var{s}) + \var{i}} or
392 \code{len(\var{s}) + \var{j}} is substituted. But note that \code{-0} is
393 still \code{0}.
394
Fred Drake38e5d272000-04-03 20:13:55 +0000395\item[(3)] The slice of \var{s} from \var{i} to \var{j} is defined as
Fred Drake64e3b431998-07-24 13:56:11 +0000396 the sequence of items with index \var{k} such that \code{\var{i} <=
397 \var{k} < \var{j}}. If \var{i} or \var{j} is greater than
398 \code{len(\var{s})}, use \code{len(\var{s})}. If \var{i} is omitted,
399 use \code{0}. If \var{j} is omitted, use \code{len(\var{s})}. If
400 \var{i} is greater than or equal to \var{j}, the slice is empty.
Fred Drake64e3b431998-07-24 13:56:11 +0000401\end{description}
402
Fred Drake9474d861999-02-12 22:05:33 +0000403
Fred Drake4de96c22000-08-12 03:36:23 +0000404\subsubsection{String Methods \label{string-methods}}
405
406These are the string methods which both 8-bit strings and Unicode
407objects support:
408
409\begin{methoddesc}[string]{capitalize}{}
410Return a copy of the string with only its first character capitalized.
411\end{methoddesc}
412
413\begin{methoddesc}[string]{center}{width}
414Return centered in a string of length \var{width}. Padding is done
415using spaces.
416\end{methoddesc}
417
418\begin{methoddesc}[string]{count}{sub\optional{, start\optional{, end}}}
419Return the number of occurrences of substring \var{sub} in string
420S\code{[\var{start}:\var{end}]}. Optional arguments \var{start} and
421\var{end} are interpreted as in slice notation.
422\end{methoddesc}
423
424\begin{methoddesc}[string]{encode}{\optional{encoding\optional{,errors}}}
425Return an encoded version of the string. Default encoding is the current
426default string encoding. \var{errors} may be given to set a different
427error handling scheme. The default for \var{errors} is
428\code{'strict'}, meaning that encoding errors raise a
429\exception{ValueError}. Other possible values are \code{'ignore'} and
430\code{'replace'}.
Fred Drake1dba66c2000-10-25 21:03:55 +0000431\versionadded{2.0}
Fred Drake4de96c22000-08-12 03:36:23 +0000432\end{methoddesc}
433
434\begin{methoddesc}[string]{endswith}{suffix\optional{, start\optional{, end}}}
435Return true if the string ends with the specified \var{suffix},
436otherwise return false. With optional \var{start}, test beginning at
437that position. With optional \var{end}, stop comparing at that position.
438\end{methoddesc}
439
440\begin{methoddesc}[string]{expandtabs}{\optional{tabsize}}
441Return a copy of the string where all tab characters are expanded
442using spaces. If \var{tabsize} is not given, a tab size of \code{8}
443characters is assumed.
444\end{methoddesc}
445
446\begin{methoddesc}[string]{find}{sub\optional{, start\optional{, end}}}
447Return the lowest index in the string where substring \var{sub} is
448found, such that \var{sub} is contained in the range [\var{start},
449\var{end}). Optional arguments \var{start} and \var{end} are
450interpreted as in slice notation. Return \code{-1} if \var{sub} is
451not found.
452\end{methoddesc}
453
454\begin{methoddesc}[string]{index}{sub\optional{, start\optional{, end}}}
455Like \method{find()}, but raise \exception{ValueError} when the
456substring is not found.
457\end{methoddesc}
458
459\begin{methoddesc}[string]{isalnum}{}
460Return true if all characters in the string are alphanumeric and there
461is at least one character, false otherwise.
462\end{methoddesc}
463
464\begin{methoddesc}[string]{isalpha}{}
465Return true if all characters in the string are alphabetic and there
466is at least one character, false otherwise.
467\end{methoddesc}
468
469\begin{methoddesc}[string]{isdigit}{}
470Return true if there are only digit characters, false otherwise.
471\end{methoddesc}
472
473\begin{methoddesc}[string]{islower}{}
474Return true if all cased characters in the string are lowercase and
475there is at least one cased character, false otherwise.
476\end{methoddesc}
477
478\begin{methoddesc}[string]{isspace}{}
479Return true if there are only whitespace characters in the string and
480the string is not empty, false otherwise.
481\end{methoddesc}
482
483\begin{methoddesc}[string]{istitle}{}
484Return true if the string is a titlecased string, i.e.\ uppercase
485characters may only follow uncased characters and lowercase characters
486only cased ones. Return false otherwise.
487\end{methoddesc}
488
489\begin{methoddesc}[string]{isupper}{}
490Return true if all cased characters in the string are uppercase and
491there is at least one cased character, false otherwise.
492\end{methoddesc}
493
494\begin{methoddesc}[string]{join}{seq}
495Return a string which is the concatenation of the strings in the
496sequence \var{seq}. The separator between elements is the string
497providing this method.
498\end{methoddesc}
499
500\begin{methoddesc}[string]{ljust}{width}
501Return the string left justified in a string of length \var{width}.
502Padding is done using spaces. The original string is returned if
503\var{width} is less than \code{len(\var{s})}.
504\end{methoddesc}
505
506\begin{methoddesc}[string]{lower}{}
507Return a copy of the string converted to lowercase.
508\end{methoddesc}
509
510\begin{methoddesc}[string]{lstrip}{}
511Return a copy of the string with leading whitespace removed.
512\end{methoddesc}
513
514\begin{methoddesc}[string]{replace}{old, new\optional{, maxsplit}}
515Return a copy of the string with all occurrences of substring
516\var{old} replaced by \var{new}. If the optional argument
517\var{maxsplit} is given, only the first \var{maxsplit} occurrences are
518replaced.
519\end{methoddesc}
520
521\begin{methoddesc}[string]{rfind}{sub \optional{,start \optional{,end}}}
522Return the highest index in the string where substring \var{sub} is
523found, such that \var{sub} is contained within s[start,end]. Optional
524arguments \var{start} and \var{end} are interpreted as in slice
525notation. Return \code{-1} on failure.
526\end{methoddesc}
527
528\begin{methoddesc}[string]{rindex}{sub\optional{, start\optional{, end}}}
529Like \method{rfind()} but raises \exception{ValueError} when the
530substring \var{sub} is not found.
531\end{methoddesc}
532
533\begin{methoddesc}[string]{rjust}{width}
534Return the string right justified in a string of length \var{width}.
535Padding is done using spaces. The original string is returned if
536\var{width} is less than \code{len(\var{s})}.
537\end{methoddesc}
538
539\begin{methoddesc}[string]{rstrip}{}
540Return a copy of the string with trailing whitespace removed.
541\end{methoddesc}
542
543\begin{methoddesc}[string]{split}{\optional{sep \optional{,maxsplit}}}
544Return a list of the words in the string, using \var{sep} as the
545delimiter string. If \var{maxsplit} is given, at most \var{maxsplit}
546splits are done. If \var{sep} is not specified or \code{None}, any
547whitespace string is a separator.
548\end{methoddesc}
549
550\begin{methoddesc}[string]{splitlines}{\optional{keepends}}
551Return a list of the lines in the string, breaking at line
552boundaries. Line breaks are not included in the resulting list unless
553\var{keepends} is given and true.
554\end{methoddesc}
555
556\begin{methoddesc}[string]{startswith}{prefix\optional{, start\optional{, end}}}
557Return true if string starts with the \var{prefix}, otherwise
558return false. With optional \var{start}, test string beginning at
559that position. With optional \var{end}, stop comparing string at that
560position.
561\end{methoddesc}
562
563\begin{methoddesc}[string]{strip}{}
564Return a copy of the string with leading and trailing whitespace
565removed.
566\end{methoddesc}
567
568\begin{methoddesc}[string]{swapcase}{}
569Return a copy of the string with uppercase characters converted to
570lowercase and vice versa.
571\end{methoddesc}
572
573\begin{methoddesc}[string]{title}{}
574Return a titlecased version of, i.e.\ words start with uppercase
575characters, all remaining cased characters are lowercase.
576\end{methoddesc}
577
578\begin{methoddesc}[string]{translate}{table\optional{, deletechars}}
579Return a copy of the string where all characters occurring in the
580optional argument \var{deletechars} are removed, and the remaining
581characters have been mapped through the given translation table, which
582must be a string of length 256.
583\end{methoddesc}
584
585\begin{methoddesc}[string]{upper}{}
586Return a copy of the string converted to uppercase.
587\end{methoddesc}
588
589
590\subsubsection{String Formatting Operations \label{typesseq-strings}}
Fred Drake64e3b431998-07-24 13:56:11 +0000591
Fred Drake66d32b12000-09-14 17:57:42 +0000592\index{formatting, string}
593\index{string!formatting}
594\index{printf-style formatting}
595\index{sprintf-style formatting}
596
Fred Drake8c071d42001-01-26 20:48:35 +0000597String and Unicode objects have one unique built-in operation: the
598\code{\%} operator (modulo). Given \code{\var{format} \%
599\var{values}} (where \var{format} is a string or Unicode object),
600\code{\%} conversion specifications in \var{format} are replaced with
601zero or more elements of \var{values}. The effect is similar to the
602using \cfunction{sprintf()} in the C language. If \var{format} is a
603Unicode object, or if any of the objects being converted using the
604\code{\%s} conversion are Unicode objects, the result will be a
605Unicode object as well.
Fred Drake64e3b431998-07-24 13:56:11 +0000606
Fred Drake8c071d42001-01-26 20:48:35 +0000607If \var{format} requires a single argument, \var{values} may be a
608single non-tuple object. \footnote{A tuple object in this case should
609 be a singleton.} Otherwise, \var{values} must be a tuple with
610exactly the number of items specified by the format string, or a
611single mapping object (for example, a dictionary).
Fred Drake64e3b431998-07-24 13:56:11 +0000612
Fred Drake8c071d42001-01-26 20:48:35 +0000613A conversion specifier contains two or more characters and has the
614following components, which must occur in this order:
615
616\begin{enumerate}
617 \item The \character{\%} character, which marks the start of the
618 specifier.
619 \item Mapping key value (optional), consisting of an identifier in
620 parentheses (for example, \code{(somename)}).
621 \item Conversion flags (optional), which affect the result of some
622 conversion types.
623 \item Minimum field width (optional). If specified as an
624 \character{*} (asterisk), the actual width is read from the
625 next element of the tuple in \var{values}, and the object to
626 convert comes after the minimum field width and optional
627 precision.
628 \item Precision (optional), given as a \character{.} (dot) followed
629 by the precision. If specified as \character{*} (an
630 asterisk), the actual width is read from the next element of
631 the tuple in \var{values}, and the value to convert comes after
632 the precision.
633 \item Length modifier (optional).
634 \item Conversion type.
635\end{enumerate}
Fred Drake64e3b431998-07-24 13:56:11 +0000636
637If the right argument is a dictionary (or any kind of mapping), then
Fred Drake8c071d42001-01-26 20:48:35 +0000638the formats in the string \emph{must} have a parenthesized key into
639that dictionary inserted immediately after the \character{\%}
640character, and each format formats the corresponding entry from the
641mapping. For example:
Fred Drake64e3b431998-07-24 13:56:11 +0000642
643\begin{verbatim}
644>>> count = 2
645>>> language = 'Python'
646>>> print '%(language)s has %(count)03d quote types.' % vars()
647Python has 002 quote types.
648\end{verbatim}
649
650In this case no \code{*} specifiers may occur in a format (since they
651require a sequential parameter list).
652
Fred Drake8c071d42001-01-26 20:48:35 +0000653The conversion flag characters are:
654
655\begin{tableii}{c|l}{character}{Flag}{Meaning}
656 \lineii{\#}{The value conversion will use the ``alternate form''
657 (where defined below).}
658 \lineii{0}{The conversion will be zero padded.}
659 \lineii{-}{The converted value is left adjusted (overrides
660 \character{-}).}
661 \lineii{{~}}{(a space) A blank should be left before a positive number
662 (or empty string) produced by a signed conversion.}
663 \lineii{+}{A sign character (\character{+} or \character{-}) will
664 precede the conversion (overrides a "space" flag).}
665\end{tableii}
666
667The length modifier may be \code{h}, \code{l}, and \code{L} may be
668present, but are ignored as they are not necessary for Python.
669
670The conversion types are:
671
672\begin{tableii}{c|l}{character}{Conversion}{Meaning}
673 \lineii{d}{Signed integer decimal.}
674 \lineii{i}{Signed integer decimal.}
675 \lineii{o}{Unsigned octal.}
676 \lineii{u}{Unsigned decimal.}
677 \lineii{x}{Unsigned hexidecimal (lowercase).}
678 \lineii{X}{Unsigned hexidecimal (uppercase).}
679 \lineii{e}{Floating point exponential format (lowercase).}
680 \lineii{E}{Floating point exponential format (uppercase).}
681 \lineii{f}{Floating point decimal format.}
682 \lineii{F}{Floating point decimal format.}
683 \lineii{g}{Same as \character{e} if exponent is greater than -4 or
684 less than precision, \character{f} otherwise.}
685 \lineii{G}{Same as \character{E} if exponent is greater than -4 or
686 less than precision, \character{F} otherwise.}
687 \lineii{c}{Single character (accepts integer or single character
688 string).}
689 \lineii{r}{String (converts any python object using
690 \function{repr()}).}
691 \lineii{s}{String (converts any python object using
692 \function{str()}).}
693 \lineii{\%}{No argument is converted, results in a \character{\%}
694 character in the result. (The complete specification is
695 \code{\%\%}.)}
696\end{tableii}
697
698% XXX Examples?
699
700
701Since Python strings have an explicit length, \code{\%s} conversions
702do not assume that \code{'\e0'} is the end of the string.
703
704For safety reasons, floating point precisions are clipped to 50;
705\code{\%f} conversions for numbers whose absolute value is over 1e25
706are replaced by \code{\%g} conversions.\footnote{
707 These numbers are fairly arbitrary. They are intended to
708 avoid printing endless strings of meaningless digits without hampering
709 correct use and without having to know the exact precision of floating
710 point values on a particular machine.
711} All other errors raise exceptions.
712
Fred Drake64e3b431998-07-24 13:56:11 +0000713Additional string operations are defined in standard module
Fred Drake107b9672000-08-14 15:37:59 +0000714\refmodule{string} and in built-in module \refmodule{re}.
Fred Drake64e3b431998-07-24 13:56:11 +0000715\refstmodindex{string}
Fred Drake66da9d61998-08-07 18:57:18 +0000716\refstmodindex{re}
Fred Drake64e3b431998-07-24 13:56:11 +0000717
Fred Drake107b9672000-08-14 15:37:59 +0000718
Fred Drake512bb722000-08-18 03:12:38 +0000719\subsubsection{XRange Type \label{typesseq-xrange}}
Fred Drake107b9672000-08-14 15:37:59 +0000720
Fred Drake0b4e25d2000-10-04 04:21:19 +0000721The xrange\obindex{xrange} type is an immutable sequence which is
Fred Drake512bb722000-08-18 03:12:38 +0000722commonly used for looping. The advantage of the xrange type is that an
723xrange object will always take the same amount of memory, no matter the
Fred Drake107b9672000-08-14 15:37:59 +0000724size of the range it represents. There are no consistent performance
725advantages.
726
Fred Drake512bb722000-08-18 03:12:38 +0000727XRange objects behave like tuples, and offer a single method:
Fred Drake107b9672000-08-14 15:37:59 +0000728
Fred Drake512bb722000-08-18 03:12:38 +0000729\begin{methoddesc}[xrange]{tolist}{}
730 Return a list object which represents the same values as the xrange
Fred Drake107b9672000-08-14 15:37:59 +0000731 object.
732\end{methoddesc}
733
734
Fred Drake9474d861999-02-12 22:05:33 +0000735\subsubsection{Mutable Sequence Types \label{typesseq-mutable}}
Fred Drake64e3b431998-07-24 13:56:11 +0000736
737List objects support additional operations that allow in-place
738modification of the object.
739These operations would be supported by other mutable sequence types
740(when added to the language) as well.
741Strings and tuples are immutable sequence types and such objects cannot
742be modified once created.
743The following operations are defined on mutable sequence types (where
744\var{x} is an arbitrary object):
745\indexiii{mutable}{sequence}{types}
Fred Drake0b4e25d2000-10-04 04:21:19 +0000746\obindex{list}
Fred Drake64e3b431998-07-24 13:56:11 +0000747
748\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
749 \lineiii{\var{s}[\var{i}] = \var{x}}
750 {item \var{i} of \var{s} is replaced by \var{x}}{}
751 \lineiii{\var{s}[\var{i}:\var{j}] = \var{t}}
752 {slice of \var{s} from \var{i} to \var{j} is replaced by \var{t}}{}
753 \lineiii{del \var{s}[\var{i}:\var{j}]}
754 {same as \code{\var{s}[\var{i}:\var{j}] = []}}{}
755 \lineiii{\var{s}.append(\var{x})}
Fred Drake38e5d272000-04-03 20:13:55 +0000756 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = [\var{x}]}}{(1)}
Barry Warsawafd974c1998-10-09 16:39:58 +0000757 \lineiii{\var{s}.extend(\var{x})}
Fred Drake38e5d272000-04-03 20:13:55 +0000758 {same as \code{\var{s}[len(\var{s}):len(\var{s})] = \var{x}}}{(2)}
Fred Drake64e3b431998-07-24 13:56:11 +0000759 \lineiii{\var{s}.count(\var{x})}
760 {return number of \var{i}'s for which \code{\var{s}[\var{i}] == \var{x}}}{}
761 \lineiii{\var{s}.index(\var{x})}
Fred Drake38e5d272000-04-03 20:13:55 +0000762 {return smallest \var{i} such that \code{\var{s}[\var{i}] == \var{x}}}{(3)}
Fred Drake64e3b431998-07-24 13:56:11 +0000763 \lineiii{\var{s}.insert(\var{i}, \var{x})}
764 {same as \code{\var{s}[\var{i}:\var{i}] = [\var{x}]}
765 if \code{\var{i} >= 0}}{}
766 \lineiii{\var{s}.pop(\optional{\var{i}})}
767 {same as \code{\var{x} = \var{s}[\var{i}]; del \var{s}[\var{i}]; return \var{x}}}{(4)}
768 \lineiii{\var{s}.remove(\var{x})}
Fred Drake38e5d272000-04-03 20:13:55 +0000769 {same as \code{del \var{s}[\var{s}.index(\var{x})]}}{(3)}
Fred Drake64e3b431998-07-24 13:56:11 +0000770 \lineiii{\var{s}.reverse()}
Fred Drake38e5d272000-04-03 20:13:55 +0000771 {reverses the items of \var{s} in place}{(5)}
Fred Drake64e3b431998-07-24 13:56:11 +0000772 \lineiii{\var{s}.sort(\optional{\var{cmpfunc}})}
Fred Drake38e5d272000-04-03 20:13:55 +0000773 {sort the items of \var{s} in place}{(5), (6)}
Fred Drake64e3b431998-07-24 13:56:11 +0000774\end{tableiii}
775\indexiv{operations on}{mutable}{sequence}{types}
776\indexiii{operations on}{sequence}{types}
777\indexiii{operations on}{list}{type}
778\indexii{subscript}{assignment}
779\indexii{slice}{assignment}
780\stindex{del}
Fred Drake9474d861999-02-12 22:05:33 +0000781\withsubitem{(list method)}{
Fred Drake68921df1999-08-09 17:05:12 +0000782 \ttindex{append()}\ttindex{extend()}\ttindex{count()}\ttindex{index()}
783 \ttindex{insert()}\ttindex{pop()}\ttindex{remove()}\ttindex{reverse()}
Fred Drakee8391991998-11-25 17:09:19 +0000784 \ttindex{sort()}}
Fred Drake64e3b431998-07-24 13:56:11 +0000785\noindent
786Notes:
787\begin{description}
Fred Drake38e5d272000-04-03 20:13:55 +0000788\item[(1)] The C implementation of Python has historically accepted
789 multiple parameters and implicitly joined them into a tuple; this
Fred Drake30f76ff2000-06-30 16:06:19 +0000790 no longer works in Python 2.0. Use of this misfeature has been
Fred Drake38e5d272000-04-03 20:13:55 +0000791 deprecated since Python 1.4.
792
793\item[(2)] Raises an exception when \var{x} is not a list object. The
794 \method{extend()} method is experimental and not supported by
795 mutable sequence types other than lists.
796
797\item[(3)] Raises \exception{ValueError} when \var{x} is not found in
Fred Drake68921df1999-08-09 17:05:12 +0000798 \var{s}.
799
Peter Schneider-Kampf917bf62000-08-01 00:07:17 +0000800\item[(4)] The \method{pop()} method is only supported by the list and
Fred Drakefbd3b452000-07-31 23:42:23 +0000801 array types. The optional argument \var{i} defaults to \code{-1},
802 so that by default the last item is removed and returned.
Fred Drake38e5d272000-04-03 20:13:55 +0000803
804\item[(5)] The \method{sort()} and \method{reverse()} methods modify the
805 list in place for economy of space when sorting or reversing a large
806 list. They don't return the sorted or reversed list to remind you
807 of this side effect.
808
809\item[(6)] The \method{sort()} method takes an optional argument
Fred Drake64e3b431998-07-24 13:56:11 +0000810 specifying a comparison function of two arguments (list items) which
Fred Drake68921df1999-08-09 17:05:12 +0000811 should return \code{-1}, \code{0} or \code{1} depending on whether
812 the first argument is considered smaller than, equal to, or larger
813 than the second argument. Note that this slows the sorting process
814 down considerably; e.g. to sort a list in reverse order it is much
815 faster to use calls to the methods \method{sort()} and
816 \method{reverse()} than to use the built-in function
817 \function{sort()} with a comparison function that reverses the
818 ordering of the elements.
Fred Drake64e3b431998-07-24 13:56:11 +0000819\end{description}
820
821
Fred Drake7a2f0661998-09-10 18:25:58 +0000822\subsection{Mapping Types \label{typesmapping}}
Fred Drake0b4e25d2000-10-04 04:21:19 +0000823\obindex{mapping}
824\obindex{dictionary}
Fred Drake64e3b431998-07-24 13:56:11 +0000825
826A \dfn{mapping} object maps values of one type (the key type) to
827arbitrary objects. Mappings are mutable objects. There is currently
828only one standard mapping type, the \dfn{dictionary}. A dictionary's keys are
829almost arbitrary values. The only types of values not acceptable as
830keys are values containing lists or dictionaries or other mutable
831types that are compared by value rather than by object identity.
832Numeric types used for keys obey the normal rules for numeric
833comparison: if two numbers compare equal (e.g. \code{1} and
834\code{1.0}) then they can be used interchangeably to index the same
835dictionary entry.
836
Fred Drake64e3b431998-07-24 13:56:11 +0000837Dictionaries are created by placing a comma-separated list of
838\code{\var{key}: \var{value}} pairs within braces, for example:
839\code{\{'jack': 4098, 'sjoerd': 4127\}} or
840\code{\{4098: 'jack', 4127: 'sjoerd'\}}.
841
Fred Drake9c5cc141999-06-10 22:37:34 +0000842The following operations are defined on mappings (where \var{a} and
843\var{b} are mappings, \var{k} is a key, and \var{v} and \var{x} are
844arbitrary objects):
Fred Drake64e3b431998-07-24 13:56:11 +0000845\indexiii{operations on}{mapping}{types}
846\indexiii{operations on}{dictionary}{type}
847\stindex{del}
848\bifuncindex{len}
Fred Drake9474d861999-02-12 22:05:33 +0000849\withsubitem{(dictionary method)}{
850 \ttindex{clear()}
851 \ttindex{copy()}
852 \ttindex{has_key()}
853 \ttindex{items()}
854 \ttindex{keys()}
855 \ttindex{update()}
856 \ttindex{values()}
Fred Drakee8391991998-11-25 17:09:19 +0000857 \ttindex{get()}}
Fred Drake9c5cc141999-06-10 22:37:34 +0000858
859\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
860 \lineiii{len(\var{a})}{the number of items in \var{a}}{}
861 \lineiii{\var{a}[\var{k}]}{the item of \var{a} with key \var{k}}{(1)}
Fred Drake1e75e172000-07-31 16:34:46 +0000862 \lineiii{\var{a}[\var{k}] = \var{v}}
863 {set \code{\var{a}[\var{k}]} to \var{v}}
Fred Drake9c5cc141999-06-10 22:37:34 +0000864 {}
865 \lineiii{del \var{a}[\var{k}]}
866 {remove \code{\var{a}[\var{k}]} from \var{a}}
867 {(1)}
868 \lineiii{\var{a}.clear()}{remove all items from \code{a}}{}
869 \lineiii{\var{a}.copy()}{a (shallow) copy of \code{a}}{}
Guido van Rossum0dbb4fb2001-04-20 16:50:40 +0000870 \lineiii{\var{k} \code{in} \var{a}}
Fred Drake9c5cc141999-06-10 22:37:34 +0000871 {\code{1} if \var{a} has a key \var{k}, else \code{0}}
872 {}
Guido van Rossum0dbb4fb2001-04-20 16:50:40 +0000873 \lineiii{\var{k} not in \var{a}}
874 {\code{0} if \var{a} has a key \var{k}, else \code{1}}
875 {}
876 \lineiii{\var{a}.has_key(\var{k})}
877 {Equivalent to \var{k} \code{in} \var{a}}
878 {}
Fred Drake9c5cc141999-06-10 22:37:34 +0000879 \lineiii{\var{a}.items()}
880 {a copy of \var{a}'s list of (\var{key}, \var{value}) pairs}
881 {(2)}
882 \lineiii{\var{a}.keys()}{a copy of \var{a}'s list of keys}{(2)}
883 \lineiii{\var{a}.update(\var{b})}
Fred Drake1e75e172000-07-31 16:34:46 +0000884 {\code{for k in \var{b}.keys(): \var{a}[k] = \var{b}[k]}}
Fred Drake9c5cc141999-06-10 22:37:34 +0000885 {(3)}
886 \lineiii{\var{a}.values()}{a copy of \var{a}'s list of values}{(2)}
887 \lineiii{\var{a}.get(\var{k}\optional{, \var{x}})}
Fred Drake4cacec52001-04-21 05:56:06 +0000888 {\code{\var{a}[\var{k}]} if \code{\var{k} in \var{a}},
Fred Drake9c5cc141999-06-10 22:37:34 +0000889 else \var{x}}
890 {(4)}
Guido van Rossum8141cf52000-08-08 16:15:49 +0000891 \lineiii{\var{a}.setdefault(\var{k}\optional{, \var{x}})}
Fred Drake4cacec52001-04-21 05:56:06 +0000892 {\code{\var{a}[\var{k}]} if \code{\var{k} in \var{a}},
Guido van Rossum8141cf52000-08-08 16:15:49 +0000893 else \var{x} (also setting it)}
894 {(5)}
Guido van Rossumff63f202000-12-12 22:03:47 +0000895 \lineiii{\var{a}.popitem()}
896 {remove and return an arbitrary (\var{key}, \var{value}) pair}
897 {(6)}
Fred Drake9c5cc141999-06-10 22:37:34 +0000898\end{tableiii}
899
Fred Drake64e3b431998-07-24 13:56:11 +0000900\noindent
901Notes:
902\begin{description}
Fred Drake9c5cc141999-06-10 22:37:34 +0000903\item[(1)] Raises a \exception{KeyError} exception if \var{k} is not
904in the map.
Fred Drake64e3b431998-07-24 13:56:11 +0000905
Fred Drake38e5d272000-04-03 20:13:55 +0000906\item[(2)] Keys and values are listed in random order. If
907\method{keys()} and \method{values()} are called with no intervening
908modifications to the dictionary, the two lists will directly
909correspond. This allows the creation of \code{(\var{value},
910\var{key})} pairs using \function{map()}: \samp{pairs = map(None,
911\var{a}.values(), \var{a}.keys())}.
Fred Drake64e3b431998-07-24 13:56:11 +0000912
913\item[(3)] \var{b} must be of the same type as \var{a}.
914
915\item[(4)] Never raises an exception if \var{k} is not in the map,
Fred Drake38e5d272000-04-03 20:13:55 +0000916instead it returns \var{x}. \var{x} is optional; when \var{x} is not
Fred Drake9c5cc141999-06-10 22:37:34 +0000917provided and \var{k} is not in the map, \code{None} is returned.
Guido van Rossum8141cf52000-08-08 16:15:49 +0000918
919\item[(5)] \function{setdefault()} is like \function{get()}, except
920that if \var{k} is missing, \var{x} is both returned and inserted into
921the dictionary as the value of \var{k}.
Guido van Rossumff63f202000-12-12 22:03:47 +0000922
923\item[(6)] \function{popitem()} is useful to destructively iterate
924over a dictionary, as often used in set algorithms.
Fred Drake64e3b431998-07-24 13:56:11 +0000925\end{description}
926
927
Fred Drake7a2f0661998-09-10 18:25:58 +0000928\subsection{Other Built-in Types \label{typesother}}
Fred Drake64e3b431998-07-24 13:56:11 +0000929
930The interpreter supports several other kinds of objects.
931Most of these support only one or two operations.
932
Fred Drake4e7c2051999-02-19 15:30:25 +0000933
Fred Drake9474d861999-02-12 22:05:33 +0000934\subsubsection{Modules \label{typesmodules}}
Fred Drake64e3b431998-07-24 13:56:11 +0000935
936The only special operation on a module is attribute access:
937\code{\var{m}.\var{name}}, where \var{m} is a module and \var{name}
938accesses a name defined in \var{m}'s symbol table. Module attributes
Fred Drake84538cd1998-11-30 21:51:25 +0000939can be assigned to. (Note that the \keyword{import} statement is not,
Fred Draked0421dd1998-08-24 17:57:20 +0000940strictly speaking, an operation on a module object; \code{import
Fred Drake64e3b431998-07-24 13:56:11 +0000941\var{foo}} does not require a module object named \var{foo} to exist,
942rather it requires an (external) \emph{definition} for a module named
943\var{foo} somewhere.)
944
Fred Drake84538cd1998-11-30 21:51:25 +0000945A special member of every module is \member{__dict__}.
Fred Drake64e3b431998-07-24 13:56:11 +0000946This is the dictionary containing the module's symbol table.
947Modifying this dictionary will actually change the module's symbol
Fred Drake84538cd1998-11-30 21:51:25 +0000948table, but direct assignment to the \member{__dict__} attribute is not
Fred Drake64e3b431998-07-24 13:56:11 +0000949possible (i.e., you can write \code{\var{m}.__dict__['a'] = 1}, which
950defines \code{\var{m}.a} to be \code{1}, but you can't write
951\code{\var{m}.__dict__ = \{\}}.
952
Fred Drake4e7c2051999-02-19 15:30:25 +0000953Modules built into the interpreter are written like this:
954\code{<module 'sys' (built-in)>}. If loaded from a file, they are
Fred Draked5d04352000-09-14 20:24:17 +0000955written as \code{<module 'os' from
956'/usr/local/lib/python\shortversion/os.pyc'>}.
Fred Drake4e7c2051999-02-19 15:30:25 +0000957
Fred Drake64e3b431998-07-24 13:56:11 +0000958
Fred Drake9474d861999-02-12 22:05:33 +0000959\subsubsection{Classes and Class Instances \label{typesobjects}}
Fred Drake64e3b431998-07-24 13:56:11 +0000960\nodename{Classes and Instances}
961
Fred Drake38e5d272000-04-03 20:13:55 +0000962See chapters 3 and 7 of the \citetitle[../ref/ref.html]{Python
Fred Drake37f15741999-11-10 16:21:37 +0000963Reference Manual} for these.
Fred Drake64e3b431998-07-24 13:56:11 +0000964
Fred Drake4e7c2051999-02-19 15:30:25 +0000965
Fred Drake9474d861999-02-12 22:05:33 +0000966\subsubsection{Functions \label{typesfunctions}}
Fred Drake64e3b431998-07-24 13:56:11 +0000967
968Function objects are created by function definitions. The only
969operation on a function object is to call it:
970\code{\var{func}(\var{argument-list})}.
971
972There are really two flavors of function objects: built-in functions
973and user-defined functions. Both support the same operation (to call
974the function), but the implementation is different, hence the
975different object types.
976
977The implementation adds two special read-only attributes:
978\code{\var{f}.func_code} is a function's \dfn{code
979object}\obindex{code} (see below) and \code{\var{f}.func_globals} is
Fred Drake13494372000-09-12 16:23:48 +0000980the dictionary used as the function's global namespace (this is the
Fred Drake64e3b431998-07-24 13:56:11 +0000981same as \code{\var{m}.__dict__} where \var{m} is the module in which
982the function \var{f} was defined).
983
Barry Warsaw773d9f02001-01-15 20:28:50 +0000984Function objects also support getting and setting arbitrary
985attributes, which can be used to, e.g. attach metadata to functions.
986Regular attribute dot-notation is used to get and set such
987attributes. \emph{Note that the current implementation only supports
988function attributes on functions written in Python. Function
989attributes on built-ins may be supported in the future.}
990
Barry Warsawd4614e82001-02-27 03:32:35 +0000991Functions have another special attribute \code{\var{f}.__dict__}
992(a.k.a. \code{\var{f}.func_dict}) which contains the namespace used to
993support function attributes. \code{__dict__} can be accessed
994directly, set to a dictionary object, or \code{None}. It can also be
995deleted (but the following two lines are equivalent):
996
997\begin{verbatim}
998del func.__dict__
999func.__dict__ = None
1000\end{verbatim}
Fred Drake64e3b431998-07-24 13:56:11 +00001001
Fred Drake9474d861999-02-12 22:05:33 +00001002\subsubsection{Methods \label{typesmethods}}
Fred Drake64e3b431998-07-24 13:56:11 +00001003\obindex{method}
1004
1005Methods are functions that are called using the attribute notation.
Fred Drake84538cd1998-11-30 21:51:25 +00001006There are two flavors: built-in methods (such as \method{append()} on
Fred Drake64e3b431998-07-24 13:56:11 +00001007lists) and class instance methods. Built-in methods are described
1008with the types that support them.
1009
1010The implementation adds two special read-only attributes to class
Fred Draked0421dd1998-08-24 17:57:20 +00001011instance methods: \code{\var{m}.im_self} is the object on which the
1012method operates, and \code{\var{m}.im_func} is the function
1013implementing the method. Calling \code{\var{m}(\var{arg-1},
Fred Drake84538cd1998-11-30 21:51:25 +00001014\var{arg-2}, \textrm{\ldots}, \var{arg-n})} is completely equivalent to
Fred Draked0421dd1998-08-24 17:57:20 +00001015calling \code{\var{m}.im_func(\var{m}.im_self, \var{arg-1},
Fred Drake84538cd1998-11-30 21:51:25 +00001016\var{arg-2}, \textrm{\ldots}, \var{arg-n})}.
Fred Drake64e3b431998-07-24 13:56:11 +00001017
Barry Warsaw773d9f02001-01-15 20:28:50 +00001018Class instance methods are either \emph{bound} or \emph{unbound},
1019referring to whether the method was accessed through an instance or a
1020class, respectively. When a method is unbound, its \code{im_self}
1021attribute will be \code{None} and if called, an explicit \code{self}
1022object must be passed as the first argument. In this case,
1023\code{self} must be an instance of the unbound method's class (or a
1024subclass of that class), otherwise a \code{TypeError} is raised.
1025
Barry Warsawd4614e82001-02-27 03:32:35 +00001026Like function objects, methods objects support getting
1027arbitrary attributes. However, since method attributes are actually
1028stored on the underlying function object (i.e. \code{meth.im_func}),
1029setting method attributes on either bound or unbound methods is
1030disallowed. Attempting to set a method attribute results in a
1031\code{TypeError} being raised. In order to set a method attribute,
1032you need to explicitly set it on the underlying function object:
Barry Warsaw773d9f02001-01-15 20:28:50 +00001033
1034\begin{verbatim}
1035class C:
1036 def method(self):
1037 pass
1038
1039c = C()
Barry Warsawd4614e82001-02-27 03:32:35 +00001040c.method.im_func.whoami = 'my name is c'
Barry Warsaw773d9f02001-01-15 20:28:50 +00001041\end{verbatim}
1042
Fred Drake37f15741999-11-10 16:21:37 +00001043See the \citetitle[../ref/ref.html]{Python Reference Manual} for more
1044information.
Fred Drake64e3b431998-07-24 13:56:11 +00001045
Fred Drake7a2f0661998-09-10 18:25:58 +00001046
1047\subsubsection{Code Objects \label{bltin-code-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +00001048\obindex{code}
1049
1050Code objects are used by the implementation to represent
1051``pseudo-compiled'' executable Python code such as a function body.
1052They differ from function objects because they don't contain a
1053reference to their global execution environment. Code objects are
Fred Drake84538cd1998-11-30 21:51:25 +00001054returned by the built-in \function{compile()} function and can be
1055extracted from function objects through their \member{func_code}
Fred Drake64e3b431998-07-24 13:56:11 +00001056attribute.
1057\bifuncindex{compile}
Fred Drakee8391991998-11-25 17:09:19 +00001058\withsubitem{(function object attribute)}{\ttindex{func_code}}
Fred Drake64e3b431998-07-24 13:56:11 +00001059
1060A code object can be executed or evaluated by passing it (instead of a
Fred Drake84538cd1998-11-30 21:51:25 +00001061source string) to the \keyword{exec} statement or the built-in
1062\function{eval()} function.
Fred Drake64e3b431998-07-24 13:56:11 +00001063\stindex{exec}
1064\bifuncindex{eval}
1065
Fred Drake37f15741999-11-10 16:21:37 +00001066See the \citetitle[../ref/ref.html]{Python Reference Manual} for more
1067information.
Fred Drake64e3b431998-07-24 13:56:11 +00001068
Fred Drake7a2f0661998-09-10 18:25:58 +00001069
1070\subsubsection{Type Objects \label{bltin-type-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +00001071
1072Type objects represent the various object types. An object's type is
Fred Drake84538cd1998-11-30 21:51:25 +00001073accessed by the built-in function \function{type()}. There are no special
1074operations on types. The standard module \module{types} defines names
Fred Drake64e3b431998-07-24 13:56:11 +00001075for all standard built-in types.
1076\bifuncindex{type}
1077\refstmodindex{types}
1078
1079Types are written like this: \code{<type 'int'>}.
1080
Fred Drake7a2f0661998-09-10 18:25:58 +00001081
1082\subsubsection{The Null Object \label{bltin-null-object}}
Fred Drake64e3b431998-07-24 13:56:11 +00001083
1084This object is returned by functions that don't explicitly return a
1085value. It supports no special operations. There is exactly one null
1086object, named \code{None} (a built-in name).
1087
1088It is written as \code{None}.
1089
Fred Drake7a2f0661998-09-10 18:25:58 +00001090
1091\subsubsection{The Ellipsis Object \label{bltin-ellipsis-object}}
Guido van Rossumb193c951998-07-24 15:02:02 +00001092
Fred Drake37f15741999-11-10 16:21:37 +00001093This object is used by extended slice notation (see the
1094\citetitle[../ref/ref.html]{Python Reference Manual}). It supports no
1095special operations. There is exactly one ellipsis object, named
1096\constant{Ellipsis} (a built-in name).
Guido van Rossumb193c951998-07-24 15:02:02 +00001097
1098It is written as \code{Ellipsis}.
1099
Fred Drakea776cea2000-11-06 20:17:37 +00001100
Fred Drakec3fcd6f1999-04-21 13:58:17 +00001101\subsubsection{File Objects\obindex{file}
1102 \label{bltin-file-objects}}
Fred Drake64e3b431998-07-24 13:56:11 +00001103
Fred Drake4de96c22000-08-12 03:36:23 +00001104File objects are implemented using C's \code{stdio} package and can be
1105created with the built-in function
1106\function{open()}\bifuncindex{open} described in section
Fred Drake130072d1998-10-28 20:08:35 +00001107\ref{built-in-funcs}, ``Built-in Functions.'' They are also returned
1108by some other built-in functions and methods, e.g.,
Fred Drake4de96c22000-08-12 03:36:23 +00001109\function{os.popen()} and \function{os.fdopen()} and the
Fred Drake130072d1998-10-28 20:08:35 +00001110\method{makefile()} method of socket objects.
Fred Drake4de96c22000-08-12 03:36:23 +00001111\refstmodindex{os}
Fred Drake64e3b431998-07-24 13:56:11 +00001112\refbimodindex{socket}
1113
1114When a file operation fails for an I/O-related reason, the exception
Fred Drake84538cd1998-11-30 21:51:25 +00001115\exception{IOError} is raised. This includes situations where the
1116operation is not defined for some reason, like \method{seek()} on a tty
Fred Drake64e3b431998-07-24 13:56:11 +00001117device or writing a file opened for reading.
1118
1119Files have the following methods:
1120
1121
1122\begin{methoddesc}[file]{close}{}
1123 Close the file. A closed file cannot be read or written anymore.
Fred Drakea776cea2000-11-06 20:17:37 +00001124 Any operation which requires that the file be open will raise a
1125 \exception{ValueError} after the file has been closed. Calling
Fred Drake752ba392000-09-19 15:18:51 +00001126 \method{close()} more than once is allowed.
Fred Drake64e3b431998-07-24 13:56:11 +00001127\end{methoddesc}
1128
1129\begin{methoddesc}[file]{flush}{}
Fred Drake752ba392000-09-19 15:18:51 +00001130 Flush the internal buffer, like \code{stdio}'s
1131 \cfunction{fflush()}. This may be a no-op on some file-like
1132 objects.
Fred Drake64e3b431998-07-24 13:56:11 +00001133\end{methoddesc}
1134
1135\begin{methoddesc}[file]{isatty}{}
Fred Drake752ba392000-09-19 15:18:51 +00001136 Return true if the file is connected to a tty(-like) device, else
1137 false. \strong{Note:} If a file-like object is not associated
1138 with a real file, this method should \emph{not} be implemented.
Fred Drake64e3b431998-07-24 13:56:11 +00001139\end{methoddesc}
1140
1141\begin{methoddesc}[file]{fileno}{}
Fred Drake752ba392000-09-19 15:18:51 +00001142 \index{file descriptor}
1143 \index{descriptor, file}
1144 Return the integer ``file descriptor'' that is used by the
1145 underlying implementation to request I/O operations from the
1146 operating system. This can be useful for other, lower level
1147 interfaces that use file descriptors, e.g.\ module
1148 \refmodule{fcntl}\refbimodindex{fcntl} or \function{os.read()} and
1149 friends. \strong{Note:} File-like objects which do not have a real
1150 file descriptor should \emph{not} provide this method!
Fred Drake64e3b431998-07-24 13:56:11 +00001151\end{methoddesc}
1152
1153\begin{methoddesc}[file]{read}{\optional{size}}
1154 Read at most \var{size} bytes from the file (less if the read hits
Fred Drakef4cbada1999-04-14 14:31:53 +00001155 \EOF{} before obtaining \var{size} bytes). If the \var{size}
1156 argument is negative or omitted, read all data until \EOF{} is
1157 reached. The bytes are returned as a string object. An empty
1158 string is returned when \EOF{} is encountered immediately. (For
1159 certain files, like ttys, it makes sense to continue reading after
1160 an \EOF{} is hit.) Note that this method may call the underlying
1161 C function \cfunction{fread()} more than once in an effort to
1162 acquire as close to \var{size} bytes as possible.
Fred Drake64e3b431998-07-24 13:56:11 +00001163\end{methoddesc}
1164
1165\begin{methoddesc}[file]{readline}{\optional{size}}
1166 Read one entire line from the file. A trailing newline character is
Fred Drakeea003fc1999-04-05 21:59:15 +00001167 kept in the string\footnote{
1168 The advantage of leaving the newline on is that an empty string
Fred Drake64e3b431998-07-24 13:56:11 +00001169 can be returned to mean \EOF{} without being ambiguous. Another
1170 advantage is that (in cases where it might matter, e.g. if you
1171 want to make an exact copy of a file while scanning its lines)
1172 you can tell whether the last line of a file ended in a newline
Fred Drake4de96c22000-08-12 03:36:23 +00001173 or not (yes this happens!).
1174 } (but may be absent when a file ends with an
Fred Drake64e3b431998-07-24 13:56:11 +00001175 incomplete line). If the \var{size} argument is present and
1176 non-negative, it is a maximum byte count (including the trailing
1177 newline) and an incomplete line may be returned.
1178 An empty string is returned when \EOF{} is hit
Fred Drake752ba392000-09-19 15:18:51 +00001179 immediately. Note: Unlike \code{stdio}'s \cfunction{fgets()}, the
1180 returned string contains null characters (\code{'\e 0'}) if they
1181 occurred in the input.
Fred Drake64e3b431998-07-24 13:56:11 +00001182\end{methoddesc}
1183
1184\begin{methoddesc}[file]{readlines}{\optional{sizehint}}
1185 Read until \EOF{} using \method{readline()} and return a list containing
1186 the lines thus read. If the optional \var{sizehint} argument is
1187 present, instead of reading up to \EOF{}, whole lines totalling
1188 approximately \var{sizehint} bytes (possibly after rounding up to an
Fred Drake752ba392000-09-19 15:18:51 +00001189 internal buffer size) are read. Objects implementing a file-like
1190 interface may choose to ignore \var{sizehint} if it cannot be
1191 implemented, or cannot be implemented efficiently.
Fred Drake64e3b431998-07-24 13:56:11 +00001192\end{methoddesc}
1193
Guido van Rossum20ab9e92001-01-17 01:18:00 +00001194\begin{methoddesc}[file]{xreadlines}{}
1195 Equivalent to \function{xreadlines.xreadlines(file)}.\refstmodindex{xreadlines}
1196\end{methoddesc}
1197
Fred Drake64e3b431998-07-24 13:56:11 +00001198\begin{methoddesc}[file]{seek}{offset\optional{, whence}}
1199 Set the file's current position, like \code{stdio}'s \cfunction{fseek()}.
1200 The \var{whence} argument is optional and defaults to \code{0}
1201 (absolute file positioning); other values are \code{1} (seek
1202 relative to the current position) and \code{2} (seek relative to the
Fred Drake19ae7832001-01-04 05:16:39 +00001203 file's end). There is no return value. Note that if the file is
1204 opened for appending (mode \code{'a'} or \code{'a+'}), any
1205 \method{seek()} operations will be undone at the next write. If the
1206 file is only opened for writing in append mode (mode \code{'a'}),
1207 this method is essentially a no-op, but it remains useful for files
1208 opened in append mode with reading enabled (mode \code{'a+'}).
Fred Drake64e3b431998-07-24 13:56:11 +00001209\end{methoddesc}
1210
1211\begin{methoddesc}[file]{tell}{}
1212 Return the file's current position, like \code{stdio}'s
1213 \cfunction{ftell()}.
1214\end{methoddesc}
1215
1216\begin{methoddesc}[file]{truncate}{\optional{size}}
Fred Drake752ba392000-09-19 15:18:51 +00001217 Truncate the file's size. If the optional \var{size} argument
1218 present, the file is truncated to (at most) that size. The size
1219 defaults to the current position. Availability of this function
1220 depends on the operating system version (for example, not all
1221 \UNIX{} versions support this operation).
Fred Drake64e3b431998-07-24 13:56:11 +00001222\end{methoddesc}
1223
1224\begin{methoddesc}[file]{write}{str}
Fred Drake3c48ef72001-01-09 22:47:46 +00001225 Write a string to the file. There is no return value. Note: Due to
1226 buffering, the string may not actually show up in the file until
1227 the \method{flush()} or \method{close()} method is called.
Fred Drake64e3b431998-07-24 13:56:11 +00001228\end{methoddesc}
1229
1230\begin{methoddesc}[file]{writelines}{list}
Fred Drake3c48ef72001-01-09 22:47:46 +00001231 Write a list of strings to the file. There is no return value.
1232 (The name is intended to match \method{readlines()};
1233 \method{writelines()} does not add line separators.)
1234\end{methoddesc}
1235
1236\begin{methoddesc}[file]{xreadlines}{}
1237 Equivalent to
1238 \function{xreadlines.xreadlines(\var{file})}.\refstmodindex{xreadlines}
1239 (See the \refmodule{xreadlines} module for more information.)
Fred Drake64e3b431998-07-24 13:56:11 +00001240\end{methoddesc}
1241
1242
Fred Drake752ba392000-09-19 15:18:51 +00001243File objects also offer a number of other interesting attributes.
1244These are not required for file-like objects, but should be
1245implemented if they make sense for the particular object.
Fred Drake64e3b431998-07-24 13:56:11 +00001246
1247\begin{memberdesc}[file]{closed}
1248Boolean indicating the current state of the file object. This is a
1249read-only attribute; the \method{close()} method changes the value.
Fred Drake752ba392000-09-19 15:18:51 +00001250It may not be available on all file-like objects.
Fred Drake64e3b431998-07-24 13:56:11 +00001251\end{memberdesc}
1252
1253\begin{memberdesc}[file]{mode}
1254The I/O mode for the file. If the file was created using the
1255\function{open()} built-in function, this will be the value of the
Fred Drake752ba392000-09-19 15:18:51 +00001256\var{mode} parameter. This is a read-only attribute and may not be
1257present on all file-like objects.
Fred Drake64e3b431998-07-24 13:56:11 +00001258\end{memberdesc}
1259
1260\begin{memberdesc}[file]{name}
1261If the file object was created using \function{open()}, the name of
1262the file. Otherwise, some string that indicates the source of the
1263file object, of the form \samp{<\mbox{\ldots}>}. This is a read-only
Fred Drake752ba392000-09-19 15:18:51 +00001264attribute and may not be present on all file-like objects.
Fred Drake64e3b431998-07-24 13:56:11 +00001265\end{memberdesc}
1266
1267\begin{memberdesc}[file]{softspace}
1268Boolean that indicates whether a space character needs to be printed
1269before another value when using the \keyword{print} statement.
1270Classes that are trying to simulate a file object should also have a
1271writable \member{softspace} attribute, which should be initialized to
Fred Drake66571cc2000-09-09 03:30:34 +00001272zero. This will be automatic for most classes implemented in Python
1273(care may be needed for objects that override attribute access); types
1274implemented in C will have to provide a writable
1275\member{softspace} attribute.
Fred Drake51f53df2000-09-20 04:48:20 +00001276\strong{Note:} This attribute is not used to control the
1277\keyword{print} statement, but to allow the implementation of
1278\keyword{print} to keep track of its internal state.
Fred Drake64e3b431998-07-24 13:56:11 +00001279\end{memberdesc}
1280
Fred Drakea776cea2000-11-06 20:17:37 +00001281
Fred Drake9474d861999-02-12 22:05:33 +00001282\subsubsection{Internal Objects \label{typesinternal}}
Fred Drake64e3b431998-07-24 13:56:11 +00001283
Fred Drake37f15741999-11-10 16:21:37 +00001284See the \citetitle[../ref/ref.html]{Python Reference Manual} for this
Fred Drake512bb722000-08-18 03:12:38 +00001285information. It describes stack frame objects, traceback objects, and
1286slice objects.
Fred Drake64e3b431998-07-24 13:56:11 +00001287
1288
Fred Drake7a2f0661998-09-10 18:25:58 +00001289\subsection{Special Attributes \label{specialattrs}}
Fred Drake64e3b431998-07-24 13:56:11 +00001290
1291The implementation adds a few special read-only attributes to several
1292object types, where they are relevant:
1293
Fred Drakea776cea2000-11-06 20:17:37 +00001294\begin{memberdesc}[object]{__dict__}
1295A dictionary or other mapping object used to store an
Fred Drake7a2f0661998-09-10 18:25:58 +00001296object's (writable) attributes.
Fred Drakea776cea2000-11-06 20:17:37 +00001297\end{memberdesc}
Fred Drake64e3b431998-07-24 13:56:11 +00001298
Fred Drakea776cea2000-11-06 20:17:37 +00001299\begin{memberdesc}[object]{__methods__}
Fred Drake7a2f0661998-09-10 18:25:58 +00001300List of the methods of many built-in object types,
Fred Drake64e3b431998-07-24 13:56:11 +00001301e.g., \code{[].__methods__} yields
Fred Drake7a2f0661998-09-10 18:25:58 +00001302\code{['append', 'count', 'index', 'insert', 'pop', 'remove',
Fred Drakea776cea2000-11-06 20:17:37 +00001303'reverse', 'sort']}. This usually does not need to be explicitly
1304provided by the object.
1305\end{memberdesc}
Fred Drake64e3b431998-07-24 13:56:11 +00001306
Fred Drakea776cea2000-11-06 20:17:37 +00001307\begin{memberdesc}[object]{__members__}
1308Similar to \member{__methods__}, but lists data attributes. This
1309usually does not need to be explicitly provided by the object.
1310\end{memberdesc}
Fred Drake64e3b431998-07-24 13:56:11 +00001311
Fred Drakea776cea2000-11-06 20:17:37 +00001312\begin{memberdesc}[instance]{__class__}
Fred Drake7a2f0661998-09-10 18:25:58 +00001313The class to which a class instance belongs.
Fred Drakea776cea2000-11-06 20:17:37 +00001314\end{memberdesc}
Fred Drake64e3b431998-07-24 13:56:11 +00001315
Fred Drakea776cea2000-11-06 20:17:37 +00001316\begin{memberdesc}[class]{__bases__}
Fred Drake7a2f0661998-09-10 18:25:58 +00001317The tuple of base classes of a class object.
Fred Drakea776cea2000-11-06 20:17:37 +00001318\end{memberdesc}