blob: 4778c7d7d8ad4cdbc72da96b05e7196983d0c12e [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Built-in Functions}
2
3The Python interpreter has a number of functions built into it that
4are always available. They are listed here in alphabetical order.
5
6
7\renewcommand{\indexsubitem}{(built-in function)}
8\begin{funcdesc}{abs}{x}
9 Return the absolute value of a number. The argument may be a plain
10 or long integer or a floating point number.
11\end{funcdesc}
12
13\begin{funcdesc}{apply}{function\, args}
14The \var{function} argument must be a callable object (a user-defined or
15built-in function or method, or a class object) and the \var{args}
16argument must be a tuple. The \var{function} is called with
17\var{args} as argument list; the number of arguments is the the length
18of the tuple. (This is different from just calling
19\code{\var{func}(\var{args})}, since in that case there is always
20exactly one argument.)
21\end{funcdesc}
22
23\begin{funcdesc}{chr}{i}
24 Return a string of one character whose \ASCII{} code is the integer
25 \var{i}, e.g., \code{chr(97)} returns the string \code{'a'}. This is the
26 inverse of \code{ord()}. The argument must be in the range [0..255],
27 inclusive.
28\end{funcdesc}
29
30\begin{funcdesc}{cmp}{x\, y}
31 Compare the two objects \var{x} and \var{y} and return an integer
32 according to the outcome. The return value is negative if \code{\var{x}
33 < \var{y}}, zero if \code{\var{x} == \var{y}} and strictly positive if
34 \code{\var{x} > \var{y}}.
35\end{funcdesc}
36
37\begin{funcdesc}{coerce}{x\, y}
38 Return a tuple consisting of the two numeric arguments converted to
39 a common type, using the same rules as used by arithmetic
40 operations.
41\end{funcdesc}
42
43\begin{funcdesc}{compile}{string\, filename\, kind}
44 Compile the \var{string} into a code object. Code objects can be
Guido van Rossum6c4f0031995-03-07 10:14:09 +000045 executed by an \code{exec} statement or evaluated by a call to
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000046 \code{eval()}. The \var{filename} argument should
47 give the file from which the code was read; pass e.g. \code{'<string>'}
48 if it wasn't read from a file. The \var{kind} argument specifies
49 what kind of code must be compiled; it can be \code{'exec'} if
50 \var{string} consists of a sequence of statements, or \code{'eval'}
51 if it consists of a single expression.
52\end{funcdesc}
53
Guido van Rossum1efbb0f1994-08-16 22:15:11 +000054\begin{funcdesc}{delattr}{object\, name}
55 This is a relative of \code{setattr}. The arguments are an
56 object and a string. The string must be the name
57 of one of the object's attributes. The function deletes
58 the named attribute, provided the object allows it. For example,
Guido van Rossum6c4f0031995-03-07 10:14:09 +000059 \code{delattr(\var{x}, '\var{foobar}')} is equivalent to
Guido van Rossum1efbb0f1994-08-16 22:15:11 +000060 \code{del \var{x}.\var{foobar}}.
61\end{funcdesc}
62
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000063\begin{funcdesc}{dir}{}
64 Without arguments, return the list of names in the current local
65 symbol table. With a module, class or class instance object as
66 argument (or anything else that has a \code{__dict__} attribute),
67 returns the list of names in that object's attribute dictionary.
68 The resulting list is sorted. For example:
69
70\bcode\begin{verbatim}
71>>> import sys
72>>> dir()
73['sys']
74>>> dir(sys)
75['argv', 'exit', 'modules', 'path', 'stderr', 'stdin', 'stdout']
76>>>
77\end{verbatim}\ecode
78\end{funcdesc}
79
80\begin{funcdesc}{divmod}{a\, b}
81 Take two numbers as arguments and return a pair of integers
82 consisting of their integer quotient and remainder. With mixed
83 operand types, the rules for binary arithmetic operators apply. For
84 plain and long integers, the result is the same as
85 \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}.
86 For floating point numbers the result is the same as
87 \code{(math.floor(\var{a} / \var{b}), \var{a} \%{} \var{b})}.
88\end{funcdesc}
89
Guido van Rossumf8601621995-01-10 10:50:24 +000090\begin{funcdesc}{eval}{expression\optional{\, globals\optional{\, locals}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000091 The arguments are a string and two optional dictionaries. The
Guido van Rossumf8601621995-01-10 10:50:24 +000092 \var{expression} argument is parsed and evaluated as a Python
93 expression (technically speaking, a condition list) using the
94 \var{globals} and \var{locals} dictionaries as global and local name
Guido van Rossum470be141995-03-17 16:07:09 +000095 space. If the \var{locals} dictionary is omitted it defaults to
96 the \var{globals} dictionary. If both dictionaries are omitted, the
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000097 expression is executed in the environment where \code{eval} is
Guido van Rossumf8601621995-01-10 10:50:24 +000098 called. The return value is the result of the evaluated expression.
99 Syntax errors are reported as exceptions. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000100
101\bcode\begin{verbatim}
102>>> x = 1
103>>> print eval('x+1')
1042
105>>>
106\end{verbatim}\ecode
107
108 This function can also be used to execute arbitrary code objects
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000109 (e.g.\ created by \code{compile()}). In this case pass a code
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000110 object instead of a string. The code object must have been compiled
111 passing \code{'eval'} to the \var{kind} argument.
112
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000113 Hints: dynamic execution of statements is supported by the
Guido van Rossumf8601621995-01-10 10:50:24 +0000114 \code{exec} statement. Execution of statements from a file is
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000115 supported by the \code{execfile()} function. The \code{vars()}
116 function returns the current local dictionary, which may be useful
117 to pass around for use by \code{eval()} or \code{execfile()}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000118
119\end{funcdesc}
120
Guido van Rossumf8601621995-01-10 10:50:24 +0000121\begin{funcdesc}{execfile}{file\optional{\, globals\optional{\, locals}}}
Guido van Rossum470be141995-03-17 16:07:09 +0000122 This function is similar to the
Guido van Rossumf8601621995-01-10 10:50:24 +0000123 \code{exec} statement, but parses a file instead of a string. It is
124 different from the \code{import} statement in that it does not use
Guido van Rossum86751151995-02-28 17:14:32 +0000125 the module administration --- it reads the file unconditionally and
Guido van Rossum470be141995-03-17 16:07:09 +0000126 does not create a new module.\footnote{It is used relatively rarely
127 so does not warrant being made into a statement.}
Guido van Rossumf8601621995-01-10 10:50:24 +0000128
129 The arguments are a file name and two optional dictionaries. The
130 file is parsed and evaluated as a sequence of Python statements
131 (similarly to a module) using the \var{globals} and \var{locals}
Guido van Rossum470be141995-03-17 16:07:09 +0000132 dictionaries as global and local name space. If the \var{locals}
133 dictionary is omitted it defaults to the \var{globals} dictionary.
Guido van Rossumf8601621995-01-10 10:50:24 +0000134 If both dictionaries are omitted, the expression is executed in the
Guido van Rossum470be141995-03-17 16:07:09 +0000135 environment where \code{execfile()} is called. The return value is
136 \code{None}.
Guido van Rossumf8601621995-01-10 10:50:24 +0000137\end{funcdesc}
138
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000139\begin{funcdesc}{filter}{function\, list}
140Construct a list from those elements of \var{list} for which
141\var{function} returns true. If \var{list} is a string or a tuple,
142the result also has that type; otherwise it is always a list. If
143\var{function} is \code{None}, the identity function is assumed,
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000144i.e.\ all elements of \var{list} that are false (zero or empty) are
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000145removed.
146\end{funcdesc}
147
148\begin{funcdesc}{float}{x}
149 Convert a number to floating point. The argument may be a plain or
150 long integer or a floating point number.
151\end{funcdesc}
152
153\begin{funcdesc}{getattr}{object\, name}
154 The arguments are an object and a string. The string must be the
155 name
156 of one of the object's attributes. The result is the value of that
157 attribute. For example, \code{getattr(\var{x}, '\var{foobar}')} is equivalent to
158 \code{\var{x}.\var{foobar}}.
159\end{funcdesc}
160
161\begin{funcdesc}{hasattr}{object\, name}
162 The arguments are an object and a string. The result is 1 if the
163 string is the name of one of the object's attributes, 0 if not.
164 (This is implemented by calling \code{getattr(object, name)} and
165 seeing whether it raises an exception or not.)
166\end{funcdesc}
167
168\begin{funcdesc}{hash}{object}
169 Return the hash value of the object (if it has one). Hash values
170 are 32-bit integers. They are used to quickly compare dictionary
171 keys during a dictionary lookup. Numeric values that compare equal
172 have the same hash value (even if they are of different types, e.g.
173 1 and 1.0).
174\end{funcdesc}
175
176\begin{funcdesc}{hex}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000177 Convert an integer number (of any size) to a hexadecimal string.
178 The result is a valid Python expression.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000179\end{funcdesc}
180
181\begin{funcdesc}{id}{object}
182 Return the `identity' of an object. This is an integer which is
183 guaranteed to be unique and constant for this object during its
184 lifetime. (Two objects whose lifetimes are disjunct may have the
185 same id() value.) (Implementation note: this is the address of the
186 object.)
187\end{funcdesc}
188
Guido van Rossum16d6e711994-08-08 12:30:22 +0000189\begin{funcdesc}{input}{\optional{prompt}}
190 Almost equivalent to \code{eval(raw_input(\var{prompt}))}. Like
191 \code{raw_input()}, the \var{prompt} argument is optional. The difference
192 is that a long input expression may be broken over multiple lines using
193 the backslash convention.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000194\end{funcdesc}
195
196\begin{funcdesc}{int}{x}
197 Convert a number to a plain integer. The argument may be a plain or
Guido van Rossum470be141995-03-17 16:07:09 +0000198 long integer or a floating point number. Conversion of floating
199 point numbers to integers is defined by the C semantics; normally
200 the conversion truncates towards zero.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000201\end{funcdesc}
202
203\begin{funcdesc}{len}{s}
204 Return the length (the number of items) of an object. The argument
205 may be a sequence (string, tuple or list) or a mapping (dictionary).
206\end{funcdesc}
207
208\begin{funcdesc}{long}{x}
209 Convert a number to a long integer. The argument may be a plain or
210 long integer or a floating point number.
211\end{funcdesc}
212
213\begin{funcdesc}{map}{function\, list\, ...}
214Apply \var{function} to every item of \var{list} and return a list
215of the results. If additional \var{list} arguments are passed,
216\var{function} must take that many arguments and is applied to
217the items of all lists in parallel; if a list is shorter than another
218it is assumed to be extended with \code{None} items. If
219\var{function} is \code{None}, the identity function is assumed; if
220there are multiple list arguments, \code{map} returns a list
221consisting of tuples containing the corresponding items from all lists
222(i.e. a kind of transpose operation). The \var{list} arguments may be
223any kind of sequence; the result is always a list.
224\end{funcdesc}
225
226\begin{funcdesc}{max}{s}
227 Return the largest item of a non-empty sequence (string, tuple or
228 list).
229\end{funcdesc}
230
231\begin{funcdesc}{min}{s}
232 Return the smallest item of a non-empty sequence (string, tuple or
233 list).
234\end{funcdesc}
235
236\begin{funcdesc}{oct}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000237 Convert an integer number (of any size) to an octal string. The
238 result is a valid Python expression.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000239\end{funcdesc}
240
Guido van Rossum7f49b7a1995-01-12 12:38:46 +0000241\begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000242 Return a new file object (described earlier under Built-in Types).
Guido van Rossum041be051994-05-03 14:46:50 +0000243 The first two arguments are the same as for \code{stdio}'s
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000244 \code{fopen()}: \var{filename} is the file name to be opened,
245 \var{mode} indicates how the file is to be opened: \code{'r'} for
246 reading, \code{'w'} for writing (truncating an existing file), and
247 \code{'a'} opens it for appending. Modes \code{'r+'}, \code{'w+'} and
248 \code{'a+'} open the file for updating, provided the underlying
249 \code{stdio} library understands this. On systems that differentiate
250 between binary and text files, \code{'b'} appended to the mode opens
251 the file in binary mode. If the file cannot be opened, \code{IOError}
252 is raised.
Guido van Rossum041be051994-05-03 14:46:50 +0000253If \var{mode} is omitted, it defaults to \code{'r'}.
254The optional \var{bufsize} argument specifies the file's desired
255buffer size: 0 means unbuffered, 1 means line buffered, any other
256positive value means use a buffer of (approximately) that size. A
257negative \var{bufsize} means to use the system default, which is
258usually line buffered for for tty devices and fully buffered for other
259files.%
260\footnote{Specifying a buffer size currently has no effect on systems
261that don't have \code{setvbuf()}. The interface to specify the buffer
262size is not done using a method that calls \code{setvbuf()}, because
263that may dump core when called after any I/O has been performed, and
264there's no reliable way to determine whether this is the case.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000265\end{funcdesc}
266
267\begin{funcdesc}{ord}{c}
268 Return the \ASCII{} value of a string of one character. E.g.,
269 \code{ord('a')} returns the integer \code{97}. This is the inverse of
270 \code{chr()}.
271\end{funcdesc}
272
Guido van Rossum16d6e711994-08-08 12:30:22 +0000273\begin{funcdesc}{pow}{x\, y\optional{\, z}}
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000274 Return \var{x} to the power \var{y}; if \var{z} is present, return
275 \var{x} to the power \var{y}, modulo \var{z} (computed more
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000276 efficiently than \code{pow(\var{x}, \var{y}) \% \var{z}}).
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000277 The arguments must have
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000278 numeric types. With mixed operand types, the rules for binary
279 arithmetic operators apply. The effective operand type is also the
280 type of the result; if the result is not expressible in this type, the
Guido van Rossum16d6e711994-08-08 12:30:22 +0000281 function raises an exception; e.g., \code{pow(2, -1)} or \code{pow(2,
282 35000)} is not allowed.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000283\end{funcdesc}
284
Guido van Rossum16d6e711994-08-08 12:30:22 +0000285\begin{funcdesc}{range}{\optional{start\,} end\optional{\, step}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000286 This is a versatile function to create lists containing arithmetic
287 progressions. It is most often used in \code{for} loops. The
288 arguments must be plain integers. If the \var{step} argument is
289 omitted, it defaults to \code{1}. If the \var{start} argument is
290 omitted, it defaults to \code{0}. The full form returns a list of
291 plain integers \code{[\var{start}, \var{start} + \var{step},
292 \var{start} + 2 * \var{step}, \ldots]}. If \var{step} is positive,
293 the last element is the largest \code{\var{start} + \var{i} *
294 \var{step}} less than \var{end}; if \var{step} is negative, the last
295 element is the largest \code{\var{start} + \var{i} * \var{step}}
Guido van Rossum470be141995-03-17 16:07:09 +0000296 greater than \var{end}. \var{step} must not be zero (or else an
297 exception is raised). Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000298
299\bcode\begin{verbatim}
300>>> range(10)
301[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
302>>> range(1, 11)
303[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
304>>> range(0, 30, 5)
305[0, 5, 10, 15, 20, 25]
306>>> range(0, 10, 3)
307[0, 3, 6, 9]
308>>> range(0, -10, -1)
309[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
310>>> range(0)
311[]
312>>> range(1, 0)
313[]
314>>>
315\end{verbatim}\ecode
316\end{funcdesc}
317
Guido van Rossum16d6e711994-08-08 12:30:22 +0000318\begin{funcdesc}{raw_input}{\optional{prompt}}
319 If the \var{prompt} argument is present, it is written to standard output
320 without a trailing newline. The function then reads a line from input,
321 converts it to a string (stripping a trailing newline), and returns that.
322 When \EOF{} is read, \code{EOFError} is raised. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000323
324\bcode\begin{verbatim}
325>>> s = raw_input('--> ')
326--> Monty Python's Flying Circus
327>>> s
Guido van Rossum470be141995-03-17 16:07:09 +0000328"Monty Python's Flying Circus"
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000329>>>
330\end{verbatim}\ecode
331\end{funcdesc}
332
Guido van Rossum16d6e711994-08-08 12:30:22 +0000333\begin{funcdesc}{reduce}{function\, list\optional{\, initializer}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000334Apply the binary \var{function} to the items of \var{list} so as to
335reduce the list to a single value. E.g.,
336\code{reduce(lambda x, y: x*y, \var{list}, 1)} returns the product of
337the elements of \var{list}. The optional \var{initializer} can be
338thought of as being prepended to \var{list} so as to allow reduction
339of an empty \var{list}. The \var{list} arguments may be any kind of
340sequence.
341\end{funcdesc}
342
343\begin{funcdesc}{reload}{module}
Guido van Rossum470be141995-03-17 16:07:09 +0000344Re-parse and re-initialize an already imported \var{module}. The
345argument must be a module object, so it must have been successfully
346imported before. This is useful if you have edited the module source
347file using an external editor and want to try out the new version
348without leaving the Python interpreter. The return value is the
349module object (i.e.\ the same as the \var{module} argument).
350
351There are a number of caveats:
352
353If a module is syntactically correct but its initialization fails, the
354first \code{import} statement for it does not bind its name locally,
355but does store a (partially initialized) module object in
356\code{sys.modules}. To reload the module you must first
357\code{import} it again (this will bind the name to the partially
358initialized module object) before you can \code{reload()} it.
359
360When a module is reloaded, its dictionary (containing the module's
361global variables) is retained. Redefinitions of names will override
362the old definitions, so this is generally not a problem. If the new
363version of a module does not define a name that was defined by the old
364version, the old definition remains. This feature can be used to the
365module's advantage if it maintains a global table or cache of objects
366--- with a \code{try} statement it can test for the table's presence
367and skip its initialization if desired.
368
369It is legal though generally not very useful to reload built-in or
370dynamically loaded modules, except for \code{sys}, \code{__main__} and
371\code{__builtin__}. In certain cases, however, extension modules are
372not designed to be initialized more than once, and may fail in
373arbitrary ways when reloaded.
374
375If a module imports objects from another module using \code{from}
376{\ldots} \code{import} {\ldots}, calling \code{reload()} for the other
377module does not redefine the objects imported from it --- one way
378around this is to re-execute the \code{from} statement, another is to
379use \code{import} and qualified names (\var{module}.\var{name})
380instead.
381
382If a module instantiates instances of a class, reloading the module
383that defines the class does not affect the method definitions of the
384instances --- they continue to use the old class definition. The same
385is true for derived classes.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000386\end{funcdesc}
387
388\begin{funcdesc}{repr}{object}
389Return a string containing a printable representation of an object.
390This is the same value yielded by conversions (reverse quotes).
391It is sometimes useful to be able to access this operation as an
392ordinary function. For many types, this function makes an attempt
393to return a string that would yield an object with the same value
394when passed to \code{eval()}.
395\end{funcdesc}
396
397\begin{funcdesc}{round}{x\, n}
398 Return the floating point value \var{x} rounded to \var{n} digits
399 after the decimal point. If \var{n} is omitted, it defaults to zero.
400 The result is a floating point number. Values are rounded to the
401 closest multiple of 10 to the power minus \var{n}; if two multiples
402 are equally close, rounding is done away from 0 (so e.g.
403 \code{round(0.5)} is \code{1.0} and \code{round(-0.5)} is \code{-1.0}).
404\end{funcdesc}
405
406\begin{funcdesc}{setattr}{object\, name\, value}
407 This is the counterpart of \code{getattr}. The arguments are an
408 object, a string and an arbitrary value. The string must be the name
409 of one of the object's attributes. The function assigns the value to
410 the attribute, provided the object allows it. For example,
411 \code{setattr(\var{x}, '\var{foobar}', 123)} is equivalent to
412 \code{\var{x}.\var{foobar} = 123}.
413\end{funcdesc}
414
415\begin{funcdesc}{str}{object}
416Return a string containing a nicely printable representation of an
417object. For strings, this returns the string itself. The difference
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000418with \code{repr(\var{object})} is that \code{str(\var{object})} does not
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000419always attempt to return a string that is acceptable to \code{eval()};
420its goal is to return a printable string.
421\end{funcdesc}
422
Guido van Rossum470be141995-03-17 16:07:09 +0000423\begin{funcdesc}{tuple}{sequence}
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000424Return a tuple whose items are the same and in the same order as
Guido van Rossum470be141995-03-17 16:07:09 +0000425\var{sequence}'s items. If \var{sequence} is alread a tuple, it
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000426is returned unchanged. For instance, \code{tuple('abc')} returns
427returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
428\code{(1, 2, 3)}.
429\end{funcdesc}
430
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000431\begin{funcdesc}{type}{object}
Guido van Rossum470be141995-03-17 16:07:09 +0000432Return the type of an \var{object}. The return value is a type
433object. The standard module \code{types} defines names for all
434built-in types.
435\stmodindex{types}
436\obindex{type}
437For instance:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000438
439\bcode\begin{verbatim}
Guido van Rossum470be141995-03-17 16:07:09 +0000440>>> import types
441>>> if type(x) == types.StringType: print "It's a string"
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000442\end{verbatim}\ecode
443\end{funcdesc}
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000444
Guido van Rossum6bb1adc1995-03-13 10:03:32 +0000445\begin{funcdesc}{vars}{\optional{object}}
Guido van Rossum17383111994-04-21 10:32:28 +0000446Without arguments, return a dictionary corresponding to the current
447local symbol table. With a module, class or class instance object as
448argument (or anything else that has a \code{__dict__} attribute),
449returns a dictionary corresponding to the object's symbol table.
450The returned dictionary should not be modified: the effects on the
451corresponding symbol table are undefined.%
452\footnote{In the current implementation, local variable bindings
453cannot normally be affected this way, but variables retrieved from
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000454other scopes (e.g. modules) can be. This may change.}
Guido van Rossum17383111994-04-21 10:32:28 +0000455\end{funcdesc}
456
Guido van Rossum16d6e711994-08-08 12:30:22 +0000457\begin{funcdesc}{xrange}{\optional{start\,} end\optional{\, step}}
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000458This function is very similar to \code{range()}, but returns an
459``xrange object'' instead of a list. This is an opaque sequence type
460which yields the same values as the corresponding list, without
461actually storing them all simultaneously. The advantage of
462\code{xrange()} over \code{range()} is minimal (since \code{xrange()}
463still has to create the values when asked for them) except when a very
Guido van Rossum470be141995-03-17 16:07:09 +0000464large range is used on a memory-starved machine (e.g. MS-DOS) or when all
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000465of the range's elements are never used (e.g. when the loop is usually
466terminated with \code{break}).
467\end{funcdesc}