blob: a04174bb400d53c2d4c491dbf01975f255ffb5d6 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{Built-in Functions \label{built-in-funcs}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00002
3The Python interpreter has a number of functions built into it that
4are always available. They are listed here in alphabetical order.
5
6
Fred Drake19479911998-02-13 06:58:54 +00007\setindexsubitem{(built-in function)}
Guido van Rossum7974b0f1997-10-05 18:53:00 +00008
9\begin{funcdesc}{__import__}{name\optional{, globals\optional{, locals\optional{, fromlist}}}}
Fred Drakee0063d22001-10-09 19:31:08 +000010 This function is invoked by the \keyword{import}\stindex{import}
11 statement. It mainly exists so that you can replace it with another
12 function that has a compatible interface, in order to change the
13 semantics of the \keyword{import} statement. For examples of why
14 and how you would do this, see the standard library modules
15 \module{ihooks}\refstmodindex{ihooks} and
16 \refmodule{rexec}\refstmodindex{rexec}. See also the built-in
17 module \refmodule{imp}\refbimodindex{imp}, which defines some useful
18 operations out of which you can build your own
19 \function{__import__()} function.
Guido van Rossum7974b0f1997-10-05 18:53:00 +000020
Fred Drakee0063d22001-10-09 19:31:08 +000021 For example, the statement \samp{import spam} results in the
22 following call: \code{__import__('spam',} \code{globals(),}
23 \code{locals(), [])}; the statement \samp{from spam.ham import eggs}
24 results in \samp{__import__('spam.ham', globals(), locals(),
25 ['eggs'])}. Note that even though \code{locals()} and
26 \code{['eggs']} are passed in as arguments, the
27 \function{__import__()} function does not set the local variable
28 named \code{eggs}; this is done by subsequent code that is generated
29 for the import statement. (In fact, the standard implementation
30 does not use its \var{locals} argument at all, and uses its
31 \var{globals} only to determine the package context of the
32 \keyword{import} statement.)
Guido van Rossum7974b0f1997-10-05 18:53:00 +000033
Fred Drakee0063d22001-10-09 19:31:08 +000034 When the \var{name} variable is of the form \code{package.module},
35 normally, the top-level package (the name up till the first dot) is
36 returned, \emph{not} the module named by \var{name}. However, when
37 a non-empty \var{fromlist} argument is given, the module named by
38 \var{name} is returned. This is done for compatibility with the
39 bytecode generated for the different kinds of import statement; when
Fred Draked6cf8be2002-10-22 20:31:22 +000040 using \samp{import spam.ham.eggs}, the top-level package \module{spam}
Fred Drakee0063d22001-10-09 19:31:08 +000041 must be placed in the importing namespace, but when using \samp{from
42 spam.ham import eggs}, the \code{spam.ham} subpackage must be used
43 to find the \code{eggs} variable. As a workaround for this
44 behavior, use \function{getattr()} to extract the desired
45 components. For example, you could define the following helper:
Guido van Rossum8c2da611998-12-04 15:32:17 +000046
47\begin{verbatim}
Guido van Rossum8c2da611998-12-04 15:32:17 +000048def my_import(name):
49 mod = __import__(name)
Fred Draked6cf8be2002-10-22 20:31:22 +000050 components = name.split('.')
Guido van Rossum8c2da611998-12-04 15:32:17 +000051 for comp in components[1:]:
52 mod = getattr(mod, comp)
53 return mod
54\end{verbatim}
Guido van Rossum7974b0f1997-10-05 18:53:00 +000055\end{funcdesc}
56
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000057\begin{funcdesc}{abs}{x}
58 Return the absolute value of a number. The argument may be a plain
Guido van Rossum921f32c1997-06-02 17:21:20 +000059 or long integer or a floating point number. If the argument is a
Guido van Rossum7974b0f1997-10-05 18:53:00 +000060 complex number, its magnitude is returned.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000061\end{funcdesc}
62
Fred Drakecce10901998-03-17 06:33:25 +000063\begin{funcdesc}{apply}{function, args\optional{, keywords}}
Fred Drakee0063d22001-10-09 19:31:08 +000064 The \var{function} argument must be a callable object (a
65 user-defined or built-in function or method, or a class object) and
Fred Drake66ded522001-11-07 06:22:25 +000066 the \var{args} argument must be a sequence. The \var{function} is
Fred Drakee0063d22001-10-09 19:31:08 +000067 called with \var{args} as the argument list; the number of arguments
Raymond Hettingerd9188842002-09-04 23:52:42 +000068 is the length of the tuple.
Fred Drakee0063d22001-10-09 19:31:08 +000069 If the optional \var{keywords} argument is present, it must be a
70 dictionary whose keys are strings. It specifies keyword arguments
Raymond Hettingerf17d65d2003-08-12 00:01:16 +000071 to be added to the end of the argument list.
Fred Drake66ded522001-11-07 06:22:25 +000072 Calling \function{apply()} is different from just calling
Fred Drake0b663102001-11-07 06:28:47 +000073 \code{\var{function}(\var{args})}, since in that case there is always
Fred Drake66ded522001-11-07 06:22:25 +000074 exactly one argument. The use of \function{apply()} is equivalent
75 to \code{\var{function}(*\var{args}, **\var{keywords})}.
Fred Drake5ec486b2002-08-22 14:27:35 +000076 Use of \function{apply()} is not necessary since the ``extended call
77 syntax,'' as used in the last example, is completely equivalent.
Fred Drake45e482f2003-01-02 04:54:04 +000078
79 \deprecated{2.3}{Use the extended call syntax instead, as described
80 above.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000081\end{funcdesc}
82
Raymond Hettinger74923d72003-09-09 01:12:18 +000083\begin{funcdesc}{basestring}{}
84 This abstract type is the superclass for \class{str} and \class{unicode}.
85 It cannot be called or instantiated, but it can be used to test whether
86 an object is an instance of \class{str} or \class{unicode}.
87 \code{isinstance(obj, basestring)} is equivalent to
88 \code{isinstance(obj, (str, unicode))}.
89 \versionadded{2.3}
90\end{funcdesc}
91
Raymond Hettinger3985df22003-06-11 08:16:06 +000092\begin{funcdesc}{bool}{\optional{x}}
Guido van Rossum77f6a652002-04-03 22:41:51 +000093 Convert a value to a Boolean, using the standard truth testing
94 procedure. If \code{x} is false, this returns \code{False};
95 otherwise it returns \code{True}. \code{bool} is also a class,
96 which is a subclass of \code{int}. Class \code{bool} cannot be
97 subclassed further. Its only instances are \code{False} and
Raymond Hettinger7e902b22003-06-11 09:15:26 +000098 \code{True}.
99
Guido van Rossum77f6a652002-04-03 22:41:51 +0000100\indexii{Boolean}{type}
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000101\versionadded{2.2.1}
Raymond Hettinger7e902b22003-06-11 09:15:26 +0000102
Neal Norwitz938b7a02003-06-17 02:37:06 +0000103 \versionchanged[If no argument is given, this function returns
104 \code{False}]{2.3}
Guido van Rossum77f6a652002-04-03 22:41:51 +0000105\end{funcdesc}
106
Guido van Rossum8be22961999-03-19 19:10:14 +0000107\begin{funcdesc}{buffer}{object\optional{, offset\optional{, size}}}
Fred Drakee0063d22001-10-09 19:31:08 +0000108 The \var{object} argument must be an object that supports the buffer
109 call interface (such as strings, arrays, and buffers). A new buffer
110 object will be created which references the \var{object} argument.
111 The buffer object will be a slice from the beginning of \var{object}
112 (or from the specified \var{offset}). The slice will extend to the
113 end of \var{object} (or will have a length given by the \var{size}
114 argument).
Guido van Rossum8be22961999-03-19 19:10:14 +0000115\end{funcdesc}
116
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000117\begin{funcdesc}{callable}{object}
Fred Drakee0063d22001-10-09 19:31:08 +0000118 Return true if the \var{object} argument appears callable, false if
119 not. If this returns true, it is still possible that a call fails,
120 but if it is false, calling \var{object} will never succeed. Note
121 that classes are callable (calling a class returns a new instance);
122 class instances are callable if they have a \method{__call__()}
123 method.
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000124\end{funcdesc}
125
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000126\begin{funcdesc}{chr}{i}
127 Return a string of one character whose \ASCII{} code is the integer
Fred Drake91f2f262001-07-06 19:28:48 +0000128 \var{i}. For example, \code{chr(97)} returns the string \code{'a'}.
129 This is the inverse of \function{ord()}. The argument must be in
130 the range [0..255], inclusive; \exception{ValueError} will be raised
131 if \var{i} is outside that range.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000132\end{funcdesc}
133
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000134\begin{funcdesc}{classmethod}{function}
135 Return a class method for \var{function}.
136
137 A class method receives the class as implicit first argument,
138 just like an instance method receives the instance.
139 To declare a class method, use this idiom:
140
141\begin{verbatim}
142class C:
143 def f(cls, arg1, arg2, ...): ...
144 f = classmethod(f)
145\end{verbatim}
146
Raymond Hettinger3985df22003-06-11 08:16:06 +0000147 It can be called either on the class (such as \code{C.f()}) or on an
148 instance (such as \code{C().f()}). The instance is ignored except for
149 its class.
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000150 If a class method is called for a derived class, the derived class
151 object is passed as the implied first argument.
152
Fred Drake2884d6d2003-07-02 12:27:43 +0000153 Class methods are different than \Cpp{} or Java static methods.
Fred Drakef91888b2003-06-26 03:11:57 +0000154 If you want those, see \function{staticmethod()} in this section.
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000155 \versionadded{2.2}
156\end{funcdesc}
157
Fred Drakecce10901998-03-17 06:33:25 +0000158\begin{funcdesc}{cmp}{x, y}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000159 Compare the two objects \var{x} and \var{y} and return an integer
160 according to the outcome. The return value is negative if \code{\var{x}
161 < \var{y}}, zero if \code{\var{x} == \var{y}} and strictly positive if
162 \code{\var{x} > \var{y}}.
163\end{funcdesc}
164
Fred Drakecce10901998-03-17 06:33:25 +0000165\begin{funcdesc}{coerce}{x, y}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000166 Return a tuple consisting of the two numeric arguments converted to
167 a common type, using the same rules as used by arithmetic
168 operations.
169\end{funcdesc}
170
Tim Peters32f453e2001-09-03 08:35:41 +0000171\begin{funcdesc}{compile}{string, filename, kind\optional{,
Michael W. Hudson53da3172001-08-27 20:02:17 +0000172 flags\optional{, dont_inherit}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000173 Compile the \var{string} into a code object. Code objects can be
Fred Drake53525371998-03-03 21:56:15 +0000174 executed by an \keyword{exec} statement or evaluated by a call to
175 \function{eval()}. The \var{filename} argument should
Guido van Rossum0d682462001-09-29 14:28:52 +0000176 give the file from which the code was read; pass some recognizable value
Fred Drake91f2f262001-07-06 19:28:48 +0000177 if it wasn't read from a file (\code{'<string>'} is commonly used).
178 The \var{kind} argument specifies what kind of code must be
179 compiled; it can be \code{'exec'} if \var{string} consists of a
180 sequence of statements, \code{'eval'} if it consists of a single
181 expression, or \code{'single'} if it consists of a single
182 interactive statement (in the latter case, expression statements
183 that evaluate to something else than \code{None} will printed).
Michael W. Hudson53da3172001-08-27 20:02:17 +0000184
Guido van Rossum0d682462001-09-29 14:28:52 +0000185 When compiling multi-line statements, two caveats apply: line
186 endings must be represented by a single newline character
187 (\code{'\e n'}), and the input must be terminated by at least one
188 newline character. If line endings are represented by
189 \code{'\e r\e n'}, use the string \method{replace()} method to
190 change them into \code{'\e n'}.
191
192 The optional arguments \var{flags} and \var{dont_inherit}
Michael W. Hudson53da3172001-08-27 20:02:17 +0000193 (which are new in Python 2.2) control which future statements (see
194 \pep{236}) affect the compilation of \var{string}. If neither is
195 present (or both are zero) the code is compiled with those future
196 statements that are in effect in the code that is calling compile.
197 If the \var{flags} argument is given and \var{dont_inherit} is not
198 (or is zero) then the future statements specified by the \var{flags}
199 argument are used in addition to those that would be used anyway.
200 If \var{dont_inherit} is a non-zero integer then the \var{flags}
201 argument is it -- the future statements in effect around the call to
202 compile are ignored.
203
204 Future statemants are specified by bits which can be bitwise or-ed
205 together to specify multiple statements. The bitfield required to
206 specify a given feature can be found as the \member{compiler_flag}
207 attribute on the \class{_Feature} instance in the
208 \module{__future__} module.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000209\end{funcdesc}
210
Raymond Hettinger3985df22003-06-11 08:16:06 +0000211\begin{funcdesc}{complex}{\optional{real\optional{, imag}}}
Guido van Rossumcb1f2421999-03-25 21:23:26 +0000212 Create a complex number with the value \var{real} + \var{imag}*j or
Fred Drake526c7a02001-12-13 19:52:22 +0000213 convert a string or number to a complex number. If the first
214 parameter is a string, it will be interpreted as a complex number
215 and the function must be called without a second parameter. The
216 second parameter can never be a string.
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000217 Each argument may be any numeric type (including complex).
218 If \var{imag} is omitted, it defaults to zero and the function
Fred Drake53525371998-03-03 21:56:15 +0000219 serves as a numeric conversion function like \function{int()},
Raymond Hettinger3985df22003-06-11 08:16:06 +0000220 \function{long()} and \function{float()}. If both arguments
221 are omitted, returns \code{0j}.
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000222\end{funcdesc}
223
Fred Drakecce10901998-03-17 06:33:25 +0000224\begin{funcdesc}{delattr}{object, name}
Fred Drake53525371998-03-03 21:56:15 +0000225 This is a relative of \function{setattr()}. The arguments are an
Guido van Rossum1efbb0f1994-08-16 22:15:11 +0000226 object and a string. The string must be the name
227 of one of the object's attributes. The function deletes
228 the named attribute, provided the object allows it. For example,
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000229 \code{delattr(\var{x}, '\var{foobar}')} is equivalent to
Guido van Rossum1efbb0f1994-08-16 22:15:11 +0000230 \code{del \var{x}.\var{foobar}}.
231\end{funcdesc}
232
Tim Petersa427a2b2001-10-29 22:25:45 +0000233\begin{funcdesc}{dict}{\optional{mapping-or-sequence}}
Just van Rossuma797d812002-11-23 09:45:04 +0000234 Return a new dictionary initialized from an optional positional
235 argument or from a set of keyword arguments.
236 If no arguments are given, return a new empty dictionary.
237 If the positional argument is a mapping object, return a dictionary
238 mapping the same keys to the same values as does the mapping object.
239 Otherwise the positional argument must be a sequence, a container that
240 supports iteration, or an iterator object. The elements of the argument
241 must each also be of one of those kinds, and each must in turn contain
Tim Peters1fc240e2001-10-26 05:06:50 +0000242 exactly two objects. The first is used as a key in the new dictionary,
243 and the second as the key's value. If a given key is seen more than
244 once, the last value associated with it is retained in the new
245 dictionary.
Just van Rossuma797d812002-11-23 09:45:04 +0000246
247 If keyword arguments are given, the keywords themselves with their
248 associated values are added as items to the dictionary. If a key
249 is specified both in the positional argument and as a keyword argument,
250 the value associated with the keyword is retained in the dictionary.
Tim Peters1fc240e2001-10-26 05:06:50 +0000251 For example, these all return a dictionary equal to
Just van Rossuma797d812002-11-23 09:45:04 +0000252 \code{\{"one": 2, "two": 3\}}:
Fred Drakeef7d08a2001-10-26 15:04:33 +0000253
254 \begin{itemize}
Just van Rossuma797d812002-11-23 09:45:04 +0000255 \item \code{dict(\{'one': 2, 'two': 3\})}
256 \item \code{dict(\{'one': 2, 'two': 3\}.items())}
257 \item \code{dict(\{'one': 2, 'two': 3\}.iteritems())}
258 \item \code{dict(zip(('one', 'two'), (2, 3)))}
259 \item \code{dict([['two', 3], ['one', 2]])}
260 \item \code{dict(one=2, two=3)}
261 \item \code{dict([(['one', 'two'][i-2], i) for i in (2, 3)])}
Fred Drakeef7d08a2001-10-26 15:04:33 +0000262 \end{itemize}
Fred Drakeda8a6dd2002-03-06 02:29:30 +0000263
264 \versionadded{2.2}
Fred Drake6e596b62002-11-23 15:02:13 +0000265 \versionchanged[Support for building a dictionary from keyword
266 arguments added]{2.3}
Tim Peters1fc240e2001-10-26 05:06:50 +0000267\end{funcdesc}
268
Fred Drake6b303b41998-04-16 22:10:27 +0000269\begin{funcdesc}{dir}{\optional{object}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000270 Without arguments, return the list of names in the current local
Guido van Rossumeb0f0661997-12-30 20:38:16 +0000271 symbol table. With an argument, attempts to return a list of valid
Tim Peters9f4341b2002-02-23 04:40:15 +0000272 attributes for that object. This information is gleaned from the
Fred Drake35705512001-12-03 17:32:27 +0000273 object's \member{__dict__} attribute, if defined, and from the class
Tim Peters9f4341b2002-02-23 04:40:15 +0000274 or type object. The list is not necessarily complete.
275 If the object is a module object, the list contains the names of the
276 module's attributes.
277 If the object is a type or class object,
278 the list contains the names of its attributes,
279 and recursively of the attributes of its bases.
280 Otherwise, the list contains the object's attributes' names,
281 the names of its class's attributes,
282 and recursively of the attributes of its class's base classes.
283 The resulting list is sorted alphabetically.
284 For example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000285
Fred Drake19479911998-02-13 06:58:54 +0000286\begin{verbatim}
Tim Peters9f4341b2002-02-23 04:40:15 +0000287>>> import struct
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000288>>> dir()
Tim Peters9f4341b2002-02-23 04:40:15 +0000289['__builtins__', '__doc__', '__name__', 'struct']
290>>> dir(struct)
291['__doc__', '__name__', 'calcsize', 'error', 'pack', 'unpack']
Fred Drake19479911998-02-13 06:58:54 +0000292\end{verbatim}
Tim Peters9f4341b2002-02-23 04:40:15 +0000293
294 \note{Because \function{dir()} is supplied primarily as a convenience
295 for use at an interactive prompt,
296 it tries to supply an interesting set of names more than it tries to
297 supply a rigorously or consistently defined set of names,
298 and its detailed behavior may change across releases.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000299\end{funcdesc}
300
Fred Drakecce10901998-03-17 06:33:25 +0000301\begin{funcdesc}{divmod}{a, b}
Raymond Hettinger6cf09f02002-05-21 18:19:49 +0000302 Take two (non complex) numbers as arguments and return a pair of numbers
303 consisting of their quotient and remainder when using long division. With
304 mixed operand types, the rules for binary arithmetic operators apply. For
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000305 plain and long integers, the result is the same as
306 \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}.
Fred Drake1ea7c751999-05-06 14:46:35 +0000307 For floating point numbers the result is \code{(\var{q}, \var{a} \%{}
308 \var{b})}, where \var{q} is usually \code{math.floor(\var{a} /
309 \var{b})} but may be 1 less than that. In any case \code{\var{q} *
310 \var{b} + \var{a} \%{} \var{b}} is very close to \var{a}, if
311 \code{\var{a} \%{} \var{b}} is non-zero it has the same sign as
312 \var{b}, and \code{0 <= abs(\var{a} \%{} \var{b}) < abs(\var{b})}.
Fred Drake807354f2002-06-20 21:10:25 +0000313
314 \versionchanged[Using \function{divmod()} with complex numbers is
315 deprecated]{2.3}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000316\end{funcdesc}
317
Fred Drake38f71972002-04-26 20:29:44 +0000318\begin{funcdesc}{enumerate}{iterable}
319 Return an enumerate object. \var{iterable} must be a sequence, an
320 iterator, or some other object which supports iteration. The
321 \method{next()} method of the iterator returned by
322 \function{enumerate()} returns a tuple containing a count (from
323 zero) and the corresponding value obtained from iterating over
Fred Drake8f53cdc2003-05-10 19:46:39 +0000324 \var{iterable}. \function{enumerate()} is useful for obtaining an
Fred Drake38f71972002-04-26 20:29:44 +0000325 indexed series: \code{(0, seq[0])}, \code{(1, seq[1])}, \code{(2,
326 seq[2])}, \ldots.
327 \versionadded{2.3}
328\end{funcdesc}
329
Fred Drakecce10901998-03-17 06:33:25 +0000330\begin{funcdesc}{eval}{expression\optional{, globals\optional{, locals}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000331 The arguments are a string and two optional dictionaries. The
Guido van Rossumf8601621995-01-10 10:50:24 +0000332 \var{expression} argument is parsed and evaluated as a Python
333 expression (technically speaking, a condition list) using the
334 \var{globals} and \var{locals} dictionaries as global and local name
Neal Norwitz046b8a72002-12-17 01:08:06 +0000335 space. If the \var{globals} dictionary is present and lacks
336 '__builtins__', the current globals are copied into \var{globals} before
337 \var{expression} is parsed. This means that \var{expression}
338 normally has full access to the standard
339 \refmodule[builtin]{__builtin__} module and restricted environments
340 are propagated. If the \var{locals} dictionary is omitted it defaults to
Guido van Rossum470be141995-03-17 16:07:09 +0000341 the \var{globals} dictionary. If both dictionaries are omitted, the
Fred Drake53525371998-03-03 21:56:15 +0000342 expression is executed in the environment where \keyword{eval} is
Guido van Rossumf8601621995-01-10 10:50:24 +0000343 called. The return value is the result of the evaluated expression.
344 Syntax errors are reported as exceptions. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000345
Fred Drake19479911998-02-13 06:58:54 +0000346\begin{verbatim}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000347>>> x = 1
348>>> print eval('x+1')
3492
Fred Drake19479911998-02-13 06:58:54 +0000350\end{verbatim}
Fred Drake53525371998-03-03 21:56:15 +0000351
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000352 This function can also be used to execute arbitrary code objects
Fred Drake91f2f262001-07-06 19:28:48 +0000353 (such as those created by \function{compile()}). In this case pass
354 a code object instead of a string. The code object must have been
355 compiled passing \code{'eval'} as the \var{kind} argument.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000356
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000357 Hints: dynamic execution of statements is supported by the
Fred Drake53525371998-03-03 21:56:15 +0000358 \keyword{exec} statement. Execution of statements from a file is
359 supported by the \function{execfile()} function. The
360 \function{globals()} and \function{locals()} functions returns the
361 current global and local dictionary, respectively, which may be
362 useful to pass around for use by \function{eval()} or
363 \function{execfile()}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000364\end{funcdesc}
365
Raymond Hettinger774816f2003-07-02 15:31:54 +0000366\begin{funcdesc}{execfile}{filename\optional{, globals\optional{, locals}}}
Guido van Rossum470be141995-03-17 16:07:09 +0000367 This function is similar to the
Fred Drake53525371998-03-03 21:56:15 +0000368 \keyword{exec} statement, but parses a file instead of a string. It
369 is different from the \keyword{import} statement in that it does not
370 use the module administration --- it reads the file unconditionally
371 and does not create a new module.\footnote{It is used relatively
372 rarely so does not warrant being made into a statement.}
Guido van Rossumf8601621995-01-10 10:50:24 +0000373
374 The arguments are a file name and two optional dictionaries. The
375 file is parsed and evaluated as a sequence of Python statements
376 (similarly to a module) using the \var{globals} and \var{locals}
Fred Drake13494372000-09-12 16:23:48 +0000377 dictionaries as global and local namespace. If the \var{locals}
Guido van Rossum470be141995-03-17 16:07:09 +0000378 dictionary is omitted it defaults to the \var{globals} dictionary.
Guido van Rossumf8601621995-01-10 10:50:24 +0000379 If both dictionaries are omitted, the expression is executed in the
Fred Drake53525371998-03-03 21:56:15 +0000380 environment where \function{execfile()} is called. The return value is
Guido van Rossum470be141995-03-17 16:07:09 +0000381 \code{None}.
Tim Petersaf5910f2001-09-30 06:32:59 +0000382
Fred Drakee0063d22001-10-09 19:31:08 +0000383 \warning{The default \var{locals} act as described for function
Tim Petersaf5910f2001-09-30 06:32:59 +0000384 \function{locals()} below: modifications to the default \var{locals}
385 dictionary should not be attempted. Pass an explicit \var{locals}
386 dictionary if you need to see effects of the code on \var{locals} after
387 function \function{execfile()} returns. \function{execfile()} cannot
Fred Drakee0063d22001-10-09 19:31:08 +0000388 be used reliably to modify a function's locals.}
Guido van Rossumf8601621995-01-10 10:50:24 +0000389\end{funcdesc}
390
Tim Peters2e29bfb2001-09-20 19:55:29 +0000391\begin{funcdesc}{file}{filename\optional{, mode\optional{, bufsize}}}
392 Return a new file object (described earlier under Built-in Types).
393 The first two arguments are the same as for \code{stdio}'s
394 \cfunction{fopen()}: \var{filename} is the file name to be opened,
395 \var{mode} indicates how the file is to be opened: \code{'r'} for
396 reading, \code{'w'} for writing (truncating an existing file), and
397 \code{'a'} opens it for appending (which on \emph{some} \UNIX{}
398 systems means that \emph{all} writes append to the end of the file,
399 regardless of the current seek position).
400
401 Modes \code{'r+'}, \code{'w+'} and \code{'a+'} open the file for
402 updating (note that \code{'w+'} truncates the file). Append
403 \code{'b'} to the mode to open the file in binary mode, on systems
404 that differentiate between binary and text files (else it is
405 ignored). If the file cannot be opened, \exception{IOError} is
406 raised.
Barry Warsaw177b4a02002-05-22 20:39:43 +0000407
408 In addition to the standard \cfunction{fopen()} values \var{mode}
409 may be \code{'U'} or \code{'rU'}. If Python is built with universal
410 newline support (the default) the file is opened as a text file, but
411 lines may be terminated by any of \code{'\e n'}, the Unix end-of-line
412 convention,
413 \code{'\e r'}, the Macintosh convention or \code{'\e r\e n'}, the Windows
414 convention. All of these external representations are seen as
415 \code{'\e n'}
416 by the Python program. If Python is built without universal newline support
417 \var{mode} \code{'U'} is the same as normal text mode. Note that
418 file objects so opened also have an attribute called
419 \member{newlines} which has a value of \code{None} (if no newlines
420 have yet been seen), \code{'\e n'}, \code{'\e r'}, \code{'\e r\e n'},
421 or a tuple containing all the newline types seen.
Tim Peters2e29bfb2001-09-20 19:55:29 +0000422
423 If \var{mode} is omitted, it defaults to \code{'r'}. When opening a
424 binary file, you should append \code{'b'} to the \var{mode} value
425 for improved portability. (It's useful even on systems which don't
426 treat binary and text files differently, where it serves as
427 documentation.)
428 \index{line-buffered I/O}\index{unbuffered I/O}\index{buffer size, I/O}
429 \index{I/O control!buffering}
430 The optional \var{bufsize} argument specifies the
431 file's desired buffer size: 0 means unbuffered, 1 means line
432 buffered, any other positive value means use a buffer of
433 (approximately) that size. A negative \var{bufsize} means to use
Raymond Hettinger999b57c2003-08-25 04:28:05 +0000434 the system default, which is usually line buffered for tty
Tim Peters2e29bfb2001-09-20 19:55:29 +0000435 devices and fully buffered for other files. If omitted, the system
436 default is used.\footnote{
437 Specifying a buffer size currently has no effect on systems that
438 don't have \cfunction{setvbuf()}. The interface to specify the
439 buffer size is not done using a method that calls
440 \cfunction{setvbuf()}, because that may dump core when called
441 after any I/O has been performed, and there's no reliable way to
442 determine whether this is the case.}
443
444 The \function{file()} constructor is new in Python 2.2. The previous
445 spelling, \function{open()}, is retained for compatibility, and is an
446 alias for \function{file()}.
447\end{funcdesc}
448
Fred Drakecce10901998-03-17 06:33:25 +0000449\begin{funcdesc}{filter}{function, list}
Fred Drakeeacdec62001-05-02 20:19:19 +0000450 Construct a list from those elements of \var{list} for which
451 \var{function} returns true. \var{list} may be either a sequence, a
452 container which supports iteration, or an iterator, If \var{list}
453 is a string or a tuple, the result also has that type; otherwise it
454 is always a list. If \var{function} is \code{None}, the identity
Fred Drake91f2f262001-07-06 19:28:48 +0000455 function is assumed, that is, all elements of \var{list} that are false
Fred Drakeeacdec62001-05-02 20:19:19 +0000456 (zero or empty) are removed.
Martin v. Löwis74723362003-05-31 08:02:38 +0000457
Fred Drake2884d6d2003-07-02 12:27:43 +0000458 Note that \code{filter(function, \var{list})} is equivalent to
459 \code{[item for item in \var{list} if function(item)]} if function is
460 not \code{None} and \code{[item for item in \var{list} if item]} if
461 function is \code{None}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000462\end{funcdesc}
463
Raymond Hettinger3985df22003-06-11 08:16:06 +0000464\begin{funcdesc}{float}{\optional{x}}
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000465 Convert a string or a number to floating point. If the argument is a
Fred Draked83675f1998-12-07 17:13:18 +0000466 string, it must contain a possibly signed decimal or floating point
Fred Drake70a66c91999-02-18 16:08:36 +0000467 number, possibly embedded in whitespace; this behaves identical to
468 \code{string.atof(\var{x})}. Otherwise, the argument may be a plain
469 or long integer or a floating point number, and a floating point
470 number with the same value (within Python's floating point
Raymond Hettinger3985df22003-06-11 08:16:06 +0000471 precision) is returned. If no argument is given, returns \code{0.0}.
Fred Drake70a66c91999-02-18 16:08:36 +0000472
Fred Drakee0063d22001-10-09 19:31:08 +0000473 \note{When passing in a string, values for NaN\index{NaN}
Fred Drake70a66c91999-02-18 16:08:36 +0000474 and Infinity\index{Infinity} may be returned, depending on the
475 underlying C library. The specific set of strings accepted which
476 cause these values to be returned depends entirely on the C library
Fred Drakee0063d22001-10-09 19:31:08 +0000477 and is known to vary.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000478\end{funcdesc}
479
Raymond Hettingera690a992003-11-16 16:17:49 +0000480\begin{funcdesc}{frozenset}{\optional{iterable}}
481 Return a frozenset object whose elements are taken from \var{iterable}.
482 Frozensets are sets that have no update methods but can be hashed and
483 used as members of other sets or as dictionary keys. The elements of
484 a frozenset must be immutable themselves. To represent sets of sets,
485 the inner sets should also be \class{frozenset} objects. If
486 \var{iterable} is not specified, returns a new empty set,
487 \code{frozenset([])}.
488 \versionadded{2.4}
489\end{funcdesc}
490
Fred Drakede5d5ce1999-07-22 19:21:45 +0000491\begin{funcdesc}{getattr}{object, name\optional{, default}}
492 Return the value of the named attributed of \var{object}. \var{name}
493 must be a string. If the string is the name of one of the object's
494 attributes, the result is the value of that attribute. For example,
495 \code{getattr(x, 'foobar')} is equivalent to \code{x.foobar}. If the
496 named attribute does not exist, \var{default} is returned if provided,
497 otherwise \exception{AttributeError} is raised.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000498\end{funcdesc}
499
Guido van Rossumfb502e91995-07-07 22:58:28 +0000500\begin{funcdesc}{globals}{}
Fred Drakee0063d22001-10-09 19:31:08 +0000501 Return a dictionary representing the current global symbol table.
502 This is always the dictionary of the current module (inside a
503 function or method, this is the module where it is defined, not the
504 module from which it is called).
Guido van Rossumfb502e91995-07-07 22:58:28 +0000505\end{funcdesc}
506
Fred Drakecce10901998-03-17 06:33:25 +0000507\begin{funcdesc}{hasattr}{object, name}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000508 The arguments are an object and a string. The result is 1 if the
509 string is the name of one of the object's attributes, 0 if not.
Fred Drake53525371998-03-03 21:56:15 +0000510 (This is implemented by calling \code{getattr(\var{object},
511 \var{name})} and seeing whether it raises an exception or not.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000512\end{funcdesc}
513
514\begin{funcdesc}{hash}{object}
515 Return the hash value of the object (if it has one). Hash values
Guido van Rossumeb0f0661997-12-30 20:38:16 +0000516 are integers. They are used to quickly compare dictionary
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000517 keys during a dictionary lookup. Numeric values that compare equal
Fred Drake91f2f262001-07-06 19:28:48 +0000518 have the same hash value (even if they are of different types, as is
519 the case for 1 and 1.0).
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000520\end{funcdesc}
521
Fred Drake732299f2001-12-18 16:31:08 +0000522\begin{funcdesc}{help}{\optional{object}}
523 Invoke the built-in help system. (This function is intended for
524 interactive use.) If no argument is given, the interactive help
525 system starts on the interpreter console. If the argument is a
526 string, then the string is looked up as the name of a module,
527 function, class, method, keyword, or documentation topic, and a
528 help page is printed on the console. If the argument is any other
529 kind of object, a help page on the object is generated.
Fred Drake933f1592002-04-17 12:54:04 +0000530 \versionadded{2.2}
Fred Drake732299f2001-12-18 16:31:08 +0000531\end{funcdesc}
532
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000533\begin{funcdesc}{hex}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000534 Convert an integer number (of any size) to a hexadecimal string.
Guido van Rossum5cd75201997-01-14 18:44:23 +0000535 The result is a valid Python expression. Note: this always yields
Fred Drake91f2f262001-07-06 19:28:48 +0000536 an unsigned literal. For example, on a 32-bit machine,
537 \code{hex(-1)} yields \code{'0xffffffff'}. When evaluated on a
538 machine with the same word size, this literal is evaluated as -1; at
539 a different word size, it may turn up as a large positive number or
540 raise an \exception{OverflowError} exception.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000541\end{funcdesc}
542
543\begin{funcdesc}{id}{object}
Fred Drake8aa3bd92000-06-29 03:46:46 +0000544 Return the `identity' of an object. This is an integer (or long
545 integer) which is guaranteed to be unique and constant for this
546 object during its lifetime. Two objects whose lifetimes are
547 disjunct may have the same \function{id()} value. (Implementation
548 note: this is the address of the object.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000549\end{funcdesc}
550
Guido van Rossum16d6e711994-08-08 12:30:22 +0000551\begin{funcdesc}{input}{\optional{prompt}}
Guido van Rossum777dcc61998-06-17 15:16:40 +0000552 Equivalent to \code{eval(raw_input(\var{prompt}))}.
Fred Drakee0063d22001-10-09 19:31:08 +0000553 \warning{This function is not safe from user errors! It
Fred Drakef96e0d22000-09-09 03:33:42 +0000554 expects a valid Python expression as input; if the input is not
555 syntactically valid, a \exception{SyntaxError} will be raised.
556 Other exceptions may be raised if there is an error during
557 evaluation. (On the other hand, sometimes this is exactly what you
Fred Drakee0063d22001-10-09 19:31:08 +0000558 need when writing a quick script for expert use.)}
Fred Drakef96e0d22000-09-09 03:33:42 +0000559
Fred Drakee0063d22001-10-09 19:31:08 +0000560 If the \refmodule{readline} module was loaded, then
Fred Drakef96e0d22000-09-09 03:33:42 +0000561 \function{input()} will use it to provide elaborate line editing and
562 history features.
563
564 Consider using the \function{raw_input()} function for general input
565 from users.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000566\end{funcdesc}
567
Raymond Hettinger3985df22003-06-11 08:16:06 +0000568\begin{funcdesc}{int}{\optional{x\optional{, radix}}}
Fred Drake1e862e82000-02-17 17:45:52 +0000569 Convert a string or number to a plain integer. If the argument is a
570 string, it must contain a possibly signed decimal number
Martin v. Löwis74723362003-05-31 08:02:38 +0000571 representable as a Python integer, possibly embedded in whitespace.
572 The \var{radix} parameter gives the base for the
Fred Drake17383b92000-11-17 19:44:14 +0000573 conversion and may be any integer in the range [2, 36], or zero. If
574 \var{radix} is zero, the proper radix is guessed based on the
575 contents of string; the interpretation is the same as for integer
576 literals. If \var{radix} is specified and \var{x} is not a string,
Fred Drake1e862e82000-02-17 17:45:52 +0000577 \exception{TypeError} is raised.
578 Otherwise, the argument may be a plain or
579 long integer or a floating point number. Conversion of floating
Tim Peters7321ec42001-07-26 20:02:17 +0000580 point numbers to integers truncates (towards zero).
Walter Dörwaldf1715402002-11-19 20:49:15 +0000581 If the argument is outside the integer range a long object will
Raymond Hettinger3985df22003-06-11 08:16:06 +0000582 be returned instead. If no arguments are given, returns \code{0}.
Fred Drake1e862e82000-02-17 17:45:52 +0000583\end{funcdesc}
584
Guido van Rossum3978d751997-03-03 16:03:27 +0000585\begin{funcdesc}{intern}{string}
586 Enter \var{string} in the table of ``interned'' strings and return
587 the interned string -- which is \var{string} itself or a copy.
588 Interning strings is useful to gain a little performance on
589 dictionary lookup -- if the keys in a dictionary are interned, and
590 the lookup key is interned, the key comparisons (after hashing) can
591 be done by a pointer compare instead of a string compare. Normally,
592 the names used in Python programs are automatically interned, and
593 the dictionaries used to hold module, class or instance attributes
Guido van Rossum45ec02a2002-08-19 21:43:18 +0000594 have interned keys. \versionchanged[Interned strings are not
595 immortal (like they used to be in Python 2.2 and before);
596 you must keep a reference to the return value of \function{intern()}
597 around to benefit from it]{2.3}
Guido van Rossum3978d751997-03-03 16:03:27 +0000598\end{funcdesc}
599
Fred Drakee0063d22001-10-09 19:31:08 +0000600\begin{funcdesc}{isinstance}{object, classinfo}
601 Return true if the \var{object} argument is an instance of the
602 \var{classinfo} argument, or of a (direct or indirect) subclass
603 thereof. Also return true if \var{classinfo} is a type object and
604 \var{object} is an object of that type. If \var{object} is not a
Walter Dörwald2e0b18a2003-01-31 17:19:08 +0000605 class instance or an object of the given type, the function always
Fred Drakee0063d22001-10-09 19:31:08 +0000606 returns false. If \var{classinfo} is neither a class object nor a
607 type object, it may be a tuple of class or type objects, or may
608 recursively contain other such tuples (other sequence types are not
609 accepted). If \var{classinfo} is not a class, type, or tuple of
610 classes, types, and such tuples, a \exception{TypeError} exception
611 is raised.
612 \versionchanged[Support for a tuple of type information was added]{2.2}
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000613\end{funcdesc}
614
Walter Dörwaldd9a6ad32002-12-12 16:41:44 +0000615\begin{funcdesc}{issubclass}{class, classinfo}
616 Return true if \var{class} is a subclass (direct or indirect) of
617 \var{classinfo}. A class is considered a subclass of itself.
618 \var{classinfo} may be a tuple of class objects, in which case every
619 entry in \var{classinfo} will be checked. In any other case, a
620 \exception{TypeError} exception is raised.
621 \versionchanged[Support for a tuple of type information was added]{2.3}
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000622\end{funcdesc}
623
Fred Drake00bb3292001-09-06 19:04:29 +0000624\begin{funcdesc}{iter}{o\optional{, sentinel}}
625 Return an iterator object. The first argument is interpreted very
626 differently depending on the presence of the second argument.
627 Without a second argument, \var{o} must be a collection object which
628 supports the iteration protocol (the \method{__iter__()} method), or
629 it must support the sequence protocol (the \method{__getitem__()}
630 method with integer arguments starting at \code{0}). If it does not
631 support either of those protocols, \exception{TypeError} is raised.
632 If the second argument, \var{sentinel}, is given, then \var{o} must
633 be a callable object. The iterator created in this case will call
634 \var{o} with no arguments for each call to its \method{next()}
635 method; if the value returned is equal to \var{sentinel},
636 \exception{StopIteration} will be raised, otherwise the value will
637 be returned.
638 \versionadded{2.2}
639\end{funcdesc}
640
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000641\begin{funcdesc}{len}{s}
642 Return the length (the number of items) of an object. The argument
643 may be a sequence (string, tuple or list) or a mapping (dictionary).
644\end{funcdesc}
645
Tim Peters1fc240e2001-10-26 05:06:50 +0000646\begin{funcdesc}{list}{\optional{sequence}}
Fred Drakeeacdec62001-05-02 20:19:19 +0000647 Return a list whose items are the same and in the same order as
648 \var{sequence}'s items. \var{sequence} may be either a sequence, a
649 container that supports iteration, or an iterator object. If
650 \var{sequence} is already a list, a copy is made and returned,
651 similar to \code{\var{sequence}[:]}. For instance,
652 \code{list('abc')} returns \code{['a', 'b', 'c']} and \code{list(
Raymond Hettinger3985df22003-06-11 08:16:06 +0000653 (1, 2, 3) )} returns \code{[1, 2, 3]}. If no argument is given,
654 returns a new empty list, \code{[]}.
Guido van Rossum921f32c1997-06-02 17:21:20 +0000655\end{funcdesc}
656
Guido van Rossumfb502e91995-07-07 22:58:28 +0000657\begin{funcdesc}{locals}{}
Raymond Hettinger69bf8f32003-01-04 02:16:22 +0000658 Update and return a dictionary representing the current local symbol table.
Fred Drakee0063d22001-10-09 19:31:08 +0000659 \warning{The contents of this dictionary should not be modified;
660 changes may not affect the values of local variables used by the
661 interpreter.}
Guido van Rossumfb502e91995-07-07 22:58:28 +0000662\end{funcdesc}
663
Raymond Hettinger3985df22003-06-11 08:16:06 +0000664\begin{funcdesc}{long}{\optional{x\optional{, radix}}}
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000665 Convert a string or number to a long integer. If the argument is a
Fred Drake9c15fa72001-01-04 05:09:16 +0000666 string, it must contain a possibly signed number of
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000667 arbitrary size, possibly embedded in whitespace;
Fred Drake17383b92000-11-17 19:44:14 +0000668 this behaves identical to \code{string.atol(\var{x})}. The
669 \var{radix} argument is interpreted in the same way as for
670 \function{int()}, and may only be given when \var{x} is a string.
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000671 Otherwise, the argument may be a plain or
Guido van Rossumeb0f0661997-12-30 20:38:16 +0000672 long integer or a floating point number, and a long integer with
Guido van Rossum1cd26f21997-04-02 06:04:02 +0000673 the same value is returned. Conversion of floating
Raymond Hettinger3985df22003-06-11 08:16:06 +0000674 point numbers to integers truncates (towards zero). If no arguments
675 are given, returns \code{0L}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000676\end{funcdesc}
677
Fred Drakecce10901998-03-17 06:33:25 +0000678\begin{funcdesc}{map}{function, list, ...}
Fred Drake91f2f262001-07-06 19:28:48 +0000679 Apply \var{function} to every item of \var{list} and return a list
680 of the results. If additional \var{list} arguments are passed,
681 \var{function} must take that many arguments and is applied to the
682 items of all lists in parallel; if a list is shorter than another it
683 is assumed to be extended with \code{None} items. If \var{function}
684 is \code{None}, the identity function is assumed; if there are
685 multiple list arguments, \function{map()} returns a list consisting
686 of tuples containing the corresponding items from all lists (a kind
687 of transpose operation). The \var{list} arguments may be any kind
688 of sequence; the result is always a list.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000689\end{funcdesc}
690
Guido van Rossum5eabf381998-11-25 18:53:05 +0000691\begin{funcdesc}{max}{s\optional{, args...}}
Fred Drake91f2f262001-07-06 19:28:48 +0000692 With a single argument \var{s}, return the largest item of a
693 non-empty sequence (such as a string, tuple or list). With more
694 than one argument, return the largest of the arguments.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000695\end{funcdesc}
696
Guido van Rossum5eabf381998-11-25 18:53:05 +0000697\begin{funcdesc}{min}{s\optional{, args...}}
Fred Drake91f2f262001-07-06 19:28:48 +0000698 With a single argument \var{s}, return the smallest item of a
699 non-empty sequence (such as a string, tuple or list). With more
700 than one argument, return the smallest of the arguments.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000701\end{funcdesc}
702
Raymond Hettinger7e902b22003-06-11 09:15:26 +0000703\begin{funcdesc}{object}{}
Fred Drakef91888b2003-06-26 03:11:57 +0000704 Return a new featureless object. \function{object()} is a base
705 for all new style classes. It has the methods that are common
706 to all instances of new style classes.
707 \versionadded{2.2}
Raymond Hettinger7e902b22003-06-11 09:15:26 +0000708
Fred Drakef91888b2003-06-26 03:11:57 +0000709 \versionchanged[This function does not accept any arguments.
710 Formerly, it accepted arguments but ignored them]{2.3}
Raymond Hettinger7e902b22003-06-11 09:15:26 +0000711\end{funcdesc}
712
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000713\begin{funcdesc}{oct}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000714 Convert an integer number (of any size) to an octal string. The
Fred Drake91f2f262001-07-06 19:28:48 +0000715 result is a valid Python expression. Note: this always yields an
716 unsigned literal. For example, on a 32-bit machine, \code{oct(-1)}
717 yields \code{'037777777777'}. When evaluated on a machine with the
718 same word size, this literal is evaluated as -1; at a different word
Guido van Rossum5cd75201997-01-14 18:44:23 +0000719 size, it may turn up as a large positive number or raise an
Fred Drake53525371998-03-03 21:56:15 +0000720 \exception{OverflowError} exception.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000721\end{funcdesc}
722
Fred Drakecce10901998-03-17 06:33:25 +0000723\begin{funcdesc}{open}{filename\optional{, mode\optional{, bufsize}}}
Tim Peters2e29bfb2001-09-20 19:55:29 +0000724 An alias for the \function{file()} function above.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000725\end{funcdesc}
726
727\begin{funcdesc}{ord}{c}
Fred Drake33d51842000-04-06 14:43:12 +0000728 Return the \ASCII{} value of a string of one character or a Unicode
729 character. E.g., \code{ord('a')} returns the integer \code{97},
Raymond Hettinger99812132003-09-06 05:47:31 +0000730 \code{ord(u'\e u2020')} returns \code{8224}. This is the inverse of
Fred Drake33d51842000-04-06 14:43:12 +0000731 \function{chr()} for strings and of \function{unichr()} for Unicode
732 characters.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000733\end{funcdesc}
734
Fred Drakecce10901998-03-17 06:33:25 +0000735\begin{funcdesc}{pow}{x, y\optional{, z}}
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000736 Return \var{x} to the power \var{y}; if \var{z} is present, return
737 \var{x} to the power \var{y}, modulo \var{z} (computed more
Guido van Rossumbf5a7742001-07-12 11:27:16 +0000738 efficiently than \code{pow(\var{x}, \var{y}) \%\ \var{z}}). The
739 arguments must have numeric types. With mixed operand types, the
740 coercion rules for binary arithmetic operators apply. For int and
741 long int operands, the result has the same type as the operands
742 (after coercion) unless the second argument is negative; in that
743 case, all arguments are converted to float and a float result is
744 delivered. For example, \code{10**2} returns \code{100}, but
745 \code{10**-2} returns \code{0.01}. (This last feature was added in
Tim Peters32f453e2001-09-03 08:35:41 +0000746 Python 2.2. In Python 2.1 and before, if both arguments were of integer
747 types and the second argument was negative, an exception was raised.)
Tim Peters2e29bfb2001-09-20 19:55:29 +0000748 If the second argument is negative, the third argument must be omitted.
Tim Peters32f453e2001-09-03 08:35:41 +0000749 If \var{z} is present, \var{x} and \var{y} must be of integer types,
750 and \var{y} must be non-negative. (This restriction was added in
751 Python 2.2. In Python 2.1 and before, floating 3-argument \code{pow()}
752 returned platform-dependent results depending on floating-point
753 rounding accidents.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000754\end{funcdesc}
755
Fred Drake8f53cdc2003-05-10 19:46:39 +0000756\begin{funcdesc}{property}{\optional{fget\optional{, fset\optional{,
757 fdel\optional{, doc}}}}}
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000758 Return a property attribute for new-style classes (classes that
Fred Drake8f53cdc2003-05-10 19:46:39 +0000759 derive from \class{object}).
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000760
761 \var{fget} is a function for getting an attribute value, likewise
762 \var{fset} is a function for setting, and \var{fdel} a function
763 for del'ing, an attribute. Typical use is to define a managed attribute x:
764
765\begin{verbatim}
766class C(object):
767 def getx(self): return self.__x
768 def setx(self, value): self.__x = value
769 def delx(self): del self.__x
Neal Norwitzb25229d2003-07-05 17:37:58 +0000770 x = property(getx, setx, delx, "I'm the 'x' property.")
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000771\end{verbatim}
772
773 \versionadded{2.2}
774\end{funcdesc}
775
Fred Drakecce10901998-03-17 06:33:25 +0000776\begin{funcdesc}{range}{\optional{start,} stop\optional{, step}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000777 This is a versatile function to create lists containing arithmetic
Fred Drake53525371998-03-03 21:56:15 +0000778 progressions. It is most often used in \keyword{for} loops. The
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000779 arguments must be plain integers. If the \var{step} argument is
780 omitted, it defaults to \code{1}. If the \var{start} argument is
781 omitted, it defaults to \code{0}. The full form returns a list of
782 plain integers \code{[\var{start}, \var{start} + \var{step},
783 \var{start} + 2 * \var{step}, \ldots]}. If \var{step} is positive,
784 the last element is the largest \code{\var{start} + \var{i} *
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000785 \var{step}} less than \var{stop}; if \var{step} is negative, the last
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000786 element is the largest \code{\var{start} + \var{i} * \var{step}}
Fred Drake6251c161998-04-03 07:15:54 +0000787 greater than \var{stop}. \var{step} must not be zero (or else
788 \exception{ValueError} is raised). Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000789
Fred Drake19479911998-02-13 06:58:54 +0000790\begin{verbatim}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000791>>> range(10)
792[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
793>>> range(1, 11)
794[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
795>>> range(0, 30, 5)
796[0, 5, 10, 15, 20, 25]
797>>> range(0, 10, 3)
798[0, 3, 6, 9]
799>>> range(0, -10, -1)
800[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
801>>> range(0)
802[]
803>>> range(1, 0)
804[]
Fred Drake19479911998-02-13 06:58:54 +0000805\end{verbatim}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000806\end{funcdesc}
807
Guido van Rossum16d6e711994-08-08 12:30:22 +0000808\begin{funcdesc}{raw_input}{\optional{prompt}}
809 If the \var{prompt} argument is present, it is written to standard output
810 without a trailing newline. The function then reads a line from input,
811 converts it to a string (stripping a trailing newline), and returns that.
Fred Drake53525371998-03-03 21:56:15 +0000812 When \EOF{} is read, \exception{EOFError} is raised. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000813
Fred Drake19479911998-02-13 06:58:54 +0000814\begin{verbatim}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000815>>> s = raw_input('--> ')
816--> Monty Python's Flying Circus
817>>> s
Guido van Rossum470be141995-03-17 16:07:09 +0000818"Monty Python's Flying Circus"
Fred Drake19479911998-02-13 06:58:54 +0000819\end{verbatim}
Guido van Rossum921f32c1997-06-02 17:21:20 +0000820
Fred Drakee0063d22001-10-09 19:31:08 +0000821 If the \refmodule{readline} module was loaded, then
822 \function{raw_input()} will use it to provide elaborate
823 line editing and history features.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000824\end{funcdesc}
825
Guido van Rossum87e611e1999-01-06 23:10:51 +0000826\begin{funcdesc}{reduce}{function, sequence\optional{, initializer}}
Fred Drakee0063d22001-10-09 19:31:08 +0000827 Apply \var{function} of two arguments cumulatively to the items of
828 \var{sequence}, from left to right, so as to reduce the sequence to
Fred Drake2095b962002-07-17 13:55:33 +0000829 a single value. For example, \code{reduce(lambda x, y: x+y, [1, 2,
Raymond Hettingerc2a28322003-10-13 17:52:35 +0000830 3, 4, 5])} calculates \code{((((1+2)+3)+4)+5)}. The left argument,
831 \var{x}, is the accumulated value and the right argument, \var{y},
832 is the update value from the \var{sequence}. If the optional
Fred Drake2095b962002-07-17 13:55:33 +0000833 \var{initializer} is present, it is placed before the items of the
834 sequence in the calculation, and serves as a default when the
835 sequence is empty. If \var{initializer} is not given and
836 \var{sequence} contains only one item, the first item is returned.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000837\end{funcdesc}
838
839\begin{funcdesc}{reload}{module}
Fred Drakee0063d22001-10-09 19:31:08 +0000840 Re-parse and re-initialize an already imported \var{module}. The
841 argument must be a module object, so it must have been successfully
842 imported before. This is useful if you have edited the module
843 source file using an external editor and want to try out the new
844 version without leaving the Python interpreter. The return value is
845 the module object (the same as the \var{module} argument).
Guido van Rossum470be141995-03-17 16:07:09 +0000846
Fred Drakee0063d22001-10-09 19:31:08 +0000847 There are a number of caveats:
Guido van Rossum470be141995-03-17 16:07:09 +0000848
Fred Drakee0063d22001-10-09 19:31:08 +0000849 If a module is syntactically correct but its initialization fails,
850 the first \keyword{import} statement for it does not bind its name
851 locally, but does store a (partially initialized) module object in
852 \code{sys.modules}. To reload the module you must first
853 \keyword{import} it again (this will bind the name to the partially
854 initialized module object) before you can \function{reload()} it.
Guido van Rossum470be141995-03-17 16:07:09 +0000855
Fred Drakee0063d22001-10-09 19:31:08 +0000856 When a module is reloaded, its dictionary (containing the module's
857 global variables) is retained. Redefinitions of names will override
858 the old definitions, so this is generally not a problem. If the new
859 version of a module does not define a name that was defined by the
860 old version, the old definition remains. This feature can be used
861 to the module's advantage if it maintains a global table or cache of
862 objects --- with a \keyword{try} statement it can test for the
863 table's presence and skip its initialization if desired.
Guido van Rossum470be141995-03-17 16:07:09 +0000864
Fred Drakee0063d22001-10-09 19:31:08 +0000865 It is legal though generally not very useful to reload built-in or
866 dynamically loaded modules, except for \refmodule{sys},
867 \refmodule[main]{__main__} and \refmodule[builtin]{__builtin__}. In
868 many cases, however, extension modules are not designed to be
869 initialized more than once, and may fail in arbitrary ways when
870 reloaded.
Guido van Rossum470be141995-03-17 16:07:09 +0000871
Fred Drakee0063d22001-10-09 19:31:08 +0000872 If a module imports objects from another module using \keyword{from}
873 \ldots{} \keyword{import} \ldots{}, calling \function{reload()} for
874 the other module does not redefine the objects imported from it ---
875 one way around this is to re-execute the \keyword{from} statement,
876 another is to use \keyword{import} and qualified names
877 (\var{module}.\var{name}) instead.
Guido van Rossum470be141995-03-17 16:07:09 +0000878
Fred Drakee0063d22001-10-09 19:31:08 +0000879 If a module instantiates instances of a class, reloading the module
880 that defines the class does not affect the method definitions of the
881 instances --- they continue to use the old class definition. The
882 same is true for derived classes.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000883\end{funcdesc}
884
885\begin{funcdesc}{repr}{object}
Fred Drakee0063d22001-10-09 19:31:08 +0000886 Return a string containing a printable representation of an object.
887 This is the same value yielded by conversions (reverse quotes).
888 It is sometimes useful to be able to access this operation as an
889 ordinary function. For many types, this function makes an attempt
890 to return a string that would yield an object with the same value
891 when passed to \function{eval()}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000892\end{funcdesc}
893
Raymond Hettinger85c20a42003-11-06 14:06:48 +0000894\begin{funcdesc}{reversed}{seq}
895 Return a reverse iterator. \var{seq} must be an object which
896 supports the sequence protocol (the __len__() method and the
897 \method{__getitem__()} method with integer arguments starting at
898 \code{0}).
899 \versionadded{2.4}
900\end{funcdesc}
901
Fred Drake607f8021998-08-24 20:30:07 +0000902\begin{funcdesc}{round}{x\optional{, n}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000903 Return the floating point value \var{x} rounded to \var{n} digits
904 after the decimal point. If \var{n} is omitted, it defaults to zero.
905 The result is a floating point number. Values are rounded to the
906 closest multiple of 10 to the power minus \var{n}; if two multiples
Fred Drake91f2f262001-07-06 19:28:48 +0000907 are equally close, rounding is done away from 0 (so. for example,
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000908 \code{round(0.5)} is \code{1.0} and \code{round(-0.5)} is \code{-1.0}).
909\end{funcdesc}
910
Raymond Hettingera690a992003-11-16 16:17:49 +0000911\begin{funcdesc}{set}{\optional{iterable}}
912 Return a set whose elements are taken from \var{iterable}. The elements
913 must be immutable. To represent sets of sets, the inner sets should
914 be \class{frozenset} objects. If \var{iterable} is not specified,
915 returns a new empty set, \code{set([])}.
916 \versionadded{2.4}
917\end{funcdesc}
918
Fred Drakecce10901998-03-17 06:33:25 +0000919\begin{funcdesc}{setattr}{object, name, value}
Fred Drake53525371998-03-03 21:56:15 +0000920 This is the counterpart of \function{getattr()}. The arguments are an
Fred Drake607f8021998-08-24 20:30:07 +0000921 object, a string and an arbitrary value. The string may name an
922 existing attribute or a new attribute. The function assigns the
923 value to the attribute, provided the object allows it. For example,
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000924 \code{setattr(\var{x}, '\var{foobar}', 123)} is equivalent to
925 \code{\var{x}.\var{foobar} = 123}.
926\end{funcdesc}
927
Fred Drakecce10901998-03-17 06:33:25 +0000928\begin{funcdesc}{slice}{\optional{start,} stop\optional{, step}}
Fred Drakee0063d22001-10-09 19:31:08 +0000929 Return a slice object representing the set of indices specified by
930 \code{range(\var{start}, \var{stop}, \var{step})}. The \var{start}
Fred Drake2884d6d2003-07-02 12:27:43 +0000931 and \var{step} arguments default to \code{None}. Slice objects have
Fred Drakee0063d22001-10-09 19:31:08 +0000932 read-only data attributes \member{start}, \member{stop} and
933 \member{step} which merely return the argument values (or their
934 default). They have no other explicit functionality; however they
935 are used by Numerical Python\index{Numerical Python} and other third
936 party extensions. Slice objects are also generated when extended
937 indexing syntax is used. For example: \samp{a[start:stop:step]} or
938 \samp{a[start:stop, i]}.
Guido van Rossum7974b0f1997-10-05 18:53:00 +0000939\end{funcdesc}
940
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000941\begin{funcdesc}{staticmethod}{function}
942 Return a static method for \var{function}.
943
944 A static method does not receive an implicit first argument.
945 To declare a static method, use this idiom:
946
947\begin{verbatim}
948class C:
949 def f(arg1, arg2, ...): ...
950 f = staticmethod(f)
951\end{verbatim}
952
Raymond Hettinger3985df22003-06-11 08:16:06 +0000953 It can be called either on the class (such as \code{C.f()}) or on an
954 instance (such as \code{C().f()}). The instance is ignored except
955 for its class.
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000956
Fred Drakef91888b2003-06-26 03:11:57 +0000957 Static methods in Python are similar to those found in Java or \Cpp.
958 For a more advanced concept, see \function{classmethod()} in this
959 section.
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000960 \versionadded{2.2}
961\end{funcdesc}
962
Fred Drake282be3a2003-04-22 14:52:08 +0000963\begin{funcdesc}{sum}{sequence\optional{, start}}
964 Sums \var{start} and the items of a \var{sequence}, from left to
965 right, and returns the total. \var{start} defaults to \code{0}.
966 The \var{sequence}'s items are normally numbers, and are not allowed
967 to be strings. The fast, correct way to concatenate sequence of
968 strings is by calling \code{''.join(\var{sequence})}.
Fred Drake2884d6d2003-07-02 12:27:43 +0000969 Note that \code{sum(range(\var{n}), \var{m})} is equivalent to
970 \code{reduce(operator.add, range(\var{n}), \var{m})}
Alex Martellia70b1912003-04-22 08:12:33 +0000971 \versionadded{2.3}
972\end{funcdesc}
973
Martin v. Löwis8bafb2a2003-11-18 19:48:57 +0000974\begin{funcdesc}{super}{type\optional{, object-or-type}}
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000975 Return the superclass of \var{type}. If the second argument is omitted
976 the super object returned is unbound. If the second argument is an
Fred Drake3ede7842003-07-01 16:31:26 +0000977 object, \code{isinstance(\var{obj}, \var{type})} must be true. If
978 the second argument is a type, \code{issubclass(\var{type2},
979 \var{type})} must be true.
980 \function{super()} only works for new-style classes.
Neal Norwitze9ce25e2002-12-17 01:02:57 +0000981
982 A typical use for calling a cooperative superclass method is:
983\begin{verbatim}
984class C(B):
985 def meth(self, arg):
986 super(C, self).meth(arg)
987\end{verbatim}
988\versionadded{2.2}
989\end{funcdesc}
990
Raymond Hettinger3985df22003-06-11 08:16:06 +0000991\begin{funcdesc}{str}{\optional{object}}
Fred Drakee0063d22001-10-09 19:31:08 +0000992 Return a string containing a nicely printable representation of an
993 object. For strings, this returns the string itself. The
994 difference with \code{repr(\var{object})} is that
995 \code{str(\var{object})} does not always attempt to return a string
996 that is acceptable to \function{eval()}; its goal is to return a
Raymond Hettinger3985df22003-06-11 08:16:06 +0000997 printable string. If no argument is given, returns the empty
998 string, \code{''}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000999\end{funcdesc}
1000
Tim Peters1fc240e2001-10-26 05:06:50 +00001001\begin{funcdesc}{tuple}{\optional{sequence}}
Fred Drakee0063d22001-10-09 19:31:08 +00001002 Return a tuple whose items are the same and in the same order as
1003 \var{sequence}'s items. \var{sequence} may be a sequence, a
1004 container that supports iteration, or an iterator object.
1005 If \var{sequence} is already a tuple, it
1006 is returned unchanged. For instance, \code{tuple('abc')} returns
Raymond Hettinger7e431102003-09-22 15:00:55 +00001007 \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
Raymond Hettinger3985df22003-06-11 08:16:06 +00001008 \code{(1, 2, 3)}. If no argument is given, returns a new empty
1009 tuple, \code{()}.
Guido van Rossumb8b264b1994-08-12 13:13:50 +00001010\end{funcdesc}
1011
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001012\begin{funcdesc}{type}{object}
Fred Drakee0063d22001-10-09 19:31:08 +00001013 Return the type of an \var{object}. The return value is a
1014 type\obindex{type} object. The standard module
1015 \module{types}\refstmodindex{types} defines names for all built-in
Fred Drake9482d252002-11-01 21:33:44 +00001016 types that don't already have built-in names.
Fred Drakee0063d22001-10-09 19:31:08 +00001017 For instance:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001018
Fred Drake19479911998-02-13 06:58:54 +00001019\begin{verbatim}
Guido van Rossum470be141995-03-17 16:07:09 +00001020>>> import types
Fred Drake9482d252002-11-01 21:33:44 +00001021>>> x = 'abc'
1022>>> if type(x) is str: print "It's a string"
1023...
1024It's a string
1025>>> def f(): pass
1026...
1027>>> if type(f) is types.FunctionType: print "It's a function"
1028...
1029It's a function
Fred Drake19479911998-02-13 06:58:54 +00001030\end{verbatim}
Fred Drake9482d252002-11-01 21:33:44 +00001031
1032 The \function{isinstance()} built-in function is recommended for
1033 testing the type of an object.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001034\end{funcdesc}
Guido van Rossum68cfbe71994-02-24 11:28:27 +00001035
Fred Drake33d51842000-04-06 14:43:12 +00001036\begin{funcdesc}{unichr}{i}
Fred Drakee0063d22001-10-09 19:31:08 +00001037 Return the Unicode string of one character whose Unicode code is the
1038 integer \var{i}. For example, \code{unichr(97)} returns the string
1039 \code{u'a'}. This is the inverse of \function{ord()} for Unicode
1040 strings. The argument must be in the range [0..65535], inclusive.
1041 \exception{ValueError} is raised otherwise.
1042 \versionadded{2.0}
Fred Drake33d51842000-04-06 14:43:12 +00001043\end{funcdesc}
1044
Raymond Hettinger3985df22003-06-11 08:16:06 +00001045\begin{funcdesc}{unicode}{\optional{object\optional{, encoding
1046 \optional{, errors}}}}
Marc-André Lemburgb5507ec2001-10-19 12:02:29 +00001047 Return the Unicode string version of \var{object} using one of the
1048 following modes:
1049
1050 If \var{encoding} and/or \var{errors} are given, \code{unicode()}
1051 will decode the object which can either be an 8-bit string or a
1052 character buffer using the codec for \var{encoding}. The
Fred Drake4254cbd2002-07-09 05:25:46 +00001053 \var{encoding} parameter is a string giving the name of an encoding;
1054 if the encoding is not known, \exception{LookupError} is raised.
Marc-André Lemburgb5507ec2001-10-19 12:02:29 +00001055 Error handling is done according to \var{errors}; this specifies the
1056 treatment of characters which are invalid in the input encoding. If
1057 \var{errors} is \code{'strict'} (the default), a
1058 \exception{ValueError} is raised on errors, while a value of
1059 \code{'ignore'} causes errors to be silently ignored, and a value of
1060 \code{'replace'} causes the official Unicode replacement character,
1061 \code{U+FFFD}, to be used to replace input characters which cannot
1062 be decoded. See also the \refmodule{codecs} module.
1063
1064 If no optional parameters are given, \code{unicode()} will mimic the
1065 behaviour of \code{str()} except that it returns Unicode strings
Fred Drake50e12862002-07-08 14:29:05 +00001066 instead of 8-bit strings. More precisely, if \var{object} is a
1067 Unicode string or subclass it will return that Unicode string without
Fred Drake78e057a2002-06-29 16:06:47 +00001068 any additional decoding applied.
1069
1070 For objects which provide a \method{__unicode__()} method, it will
1071 call this method without arguments to create a Unicode string. For
1072 all other objects, the 8-bit string version or representation is
1073 requested and then converted to a Unicode string using the codec for
1074 the default encoding in \code{'strict'} mode.
1075
Fred Drakee0063d22001-10-09 19:31:08 +00001076 \versionadded{2.0}
Fred Drake78e057a2002-06-29 16:06:47 +00001077 \versionchanged[Support for \method{__unicode__()} added]{2.2}
Fred Drake33d51842000-04-06 14:43:12 +00001078\end{funcdesc}
1079
Guido van Rossum6bb1adc1995-03-13 10:03:32 +00001080\begin{funcdesc}{vars}{\optional{object}}
Fred Drakee0063d22001-10-09 19:31:08 +00001081 Without arguments, return a dictionary corresponding to the current
1082 local symbol table. With a module, class or class instance object
1083 as argument (or anything else that has a \member{__dict__}
1084 attribute), returns a dictionary corresponding to the object's
1085 symbol table. The returned dictionary should not be modified: the
1086 effects on the corresponding symbol table are undefined.\footnote{
1087 In the current implementation, local variable bindings cannot
1088 normally be affected this way, but variables retrieved from
1089 other scopes (such as modules) can be. This may change.}
Guido van Rossum17383111994-04-21 10:32:28 +00001090\end{funcdesc}
1091
Fred Drakecce10901998-03-17 06:33:25 +00001092\begin{funcdesc}{xrange}{\optional{start,} stop\optional{, step}}
Fred Drakee0063d22001-10-09 19:31:08 +00001093 This function is very similar to \function{range()}, but returns an
1094 ``xrange object'' instead of a list. This is an opaque sequence
1095 type which yields the same values as the corresponding list, without
1096 actually storing them all simultaneously. The advantage of
1097 \function{xrange()} over \function{range()} is minimal (since
1098 \function{xrange()} still has to create the values when asked for
1099 them) except when a very large range is used on a memory-starved
1100 machine or when all of the range's elements are never used (such as
1101 when the loop is usually terminated with \keyword{break}).
Guido van Rossum68cfbe71994-02-24 11:28:27 +00001102\end{funcdesc}
Barry Warsawfaefa2a2000-08-03 15:46:17 +00001103
Raymond Hettingereaef6152003-08-02 07:42:57 +00001104\begin{funcdesc}{zip}{\optional{seq1, \moreargs}}
Fred Drake5172adc2001-12-03 18:35:05 +00001105 This function returns a list of tuples, where the \var{i}-th tuple contains
Raymond Hettingereaef6152003-08-02 07:42:57 +00001106 the \var{i}-th element from each of the argument sequences.
1107 The returned list is truncated in length to the length of
Fred Drakee0063d22001-10-09 19:31:08 +00001108 the shortest argument sequence. When there are multiple argument
1109 sequences which are all of the same length, \function{zip()} is
1110 similar to \function{map()} with an initial argument of \code{None}.
1111 With a single sequence argument, it returns a list of 1-tuples.
Raymond Hettingereaef6152003-08-02 07:42:57 +00001112 With no arguments, it returns an empty list.
Fred Drakee0063d22001-10-09 19:31:08 +00001113 \versionadded{2.0}
Raymond Hettingereaef6152003-08-02 07:42:57 +00001114
1115 \versionchanged[Formerly, \function{zip()} required at least one argument
1116 and \code{zip()} raised a \exception{TypeError} instead of returning
1117 \code{[]}]{2.4}
Fred Drake8b168ba2000-08-03 17:29:13 +00001118\end{funcdesc}