blob: ddb3a9197ff8a74b57537a3bdeab08d85d8e4a06 [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
Guido van Rossum0568d5e1995-10-08 01:06:46 +000013\begin{funcdesc}{apply}{function\, args\optional{, keywords}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000014The \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.)
Guido van Rossum0568d5e1995-10-08 01:06:46 +000021If the optional \var{keywords} argument is present, it must be a
22dictionary whose keys are strings. It specifies keyword arguments to
23be added to the end of the the argument list.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000024\end{funcdesc}
25
26\begin{funcdesc}{chr}{i}
27 Return a string of one character whose \ASCII{} code is the integer
28 \var{i}, e.g., \code{chr(97)} returns the string \code{'a'}. This is the
29 inverse of \code{ord()}. The argument must be in the range [0..255],
30 inclusive.
31\end{funcdesc}
32
33\begin{funcdesc}{cmp}{x\, y}
34 Compare the two objects \var{x} and \var{y} and return an integer
35 according to the outcome. The return value is negative if \code{\var{x}
36 < \var{y}}, zero if \code{\var{x} == \var{y}} and strictly positive if
37 \code{\var{x} > \var{y}}.
38\end{funcdesc}
39
40\begin{funcdesc}{coerce}{x\, y}
41 Return a tuple consisting of the two numeric arguments converted to
42 a common type, using the same rules as used by arithmetic
43 operations.
44\end{funcdesc}
45
46\begin{funcdesc}{compile}{string\, filename\, kind}
47 Compile the \var{string} into a code object. Code objects can be
Guido van Rossum6c4f0031995-03-07 10:14:09 +000048 executed by an \code{exec} statement or evaluated by a call to
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000049 \code{eval()}. The \var{filename} argument should
50 give the file from which the code was read; pass e.g. \code{'<string>'}
51 if it wasn't read from a file. The \var{kind} argument specifies
52 what kind of code must be compiled; it can be \code{'exec'} if
Guido van Rossumfb502e91995-07-07 22:58:28 +000053 \var{string} consists of a sequence of statements, \code{'eval'}
54 if it consists of a single expression, or \code{'single'} if
55 it consists of a single interactive statement (in the latter case,
56 expression statements that evaluate to something else than
57 \code{None} will printed).
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000058\end{funcdesc}
59
Guido van Rossum1efbb0f1994-08-16 22:15:11 +000060\begin{funcdesc}{delattr}{object\, name}
61 This is a relative of \code{setattr}. The arguments are an
62 object and a string. The string must be the name
63 of one of the object's attributes. The function deletes
64 the named attribute, provided the object allows it. For example,
Guido van Rossum6c4f0031995-03-07 10:14:09 +000065 \code{delattr(\var{x}, '\var{foobar}')} is equivalent to
Guido van Rossum1efbb0f1994-08-16 22:15:11 +000066 \code{del \var{x}.\var{foobar}}.
67\end{funcdesc}
68
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000069\begin{funcdesc}{dir}{}
70 Without arguments, return the list of names in the current local
71 symbol table. With a module, class or class instance object as
72 argument (or anything else that has a \code{__dict__} attribute),
73 returns the list of names in that object's attribute dictionary.
74 The resulting list is sorted. For example:
75
76\bcode\begin{verbatim}
77>>> import sys
78>>> dir()
79['sys']
80>>> dir(sys)
81['argv', 'exit', 'modules', 'path', 'stderr', 'stdin', 'stdout']
82>>>
83\end{verbatim}\ecode
84\end{funcdesc}
85
86\begin{funcdesc}{divmod}{a\, b}
87 Take two numbers as arguments and return a pair of integers
88 consisting of their integer quotient and remainder. With mixed
89 operand types, the rules for binary arithmetic operators apply. For
90 plain and long integers, the result is the same as
91 \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}.
92 For floating point numbers the result is the same as
93 \code{(math.floor(\var{a} / \var{b}), \var{a} \%{} \var{b})}.
94\end{funcdesc}
95
Guido van Rossumf8601621995-01-10 10:50:24 +000096\begin{funcdesc}{eval}{expression\optional{\, globals\optional{\, locals}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000097 The arguments are a string and two optional dictionaries. The
Guido van Rossumf8601621995-01-10 10:50:24 +000098 \var{expression} argument is parsed and evaluated as a Python
99 expression (technically speaking, a condition list) using the
100 \var{globals} and \var{locals} dictionaries as global and local name
Guido van Rossum470be141995-03-17 16:07:09 +0000101 space. If the \var{locals} dictionary is omitted it defaults to
102 the \var{globals} dictionary. If both dictionaries are omitted, the
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000103 expression is executed in the environment where \code{eval} is
Guido van Rossumf8601621995-01-10 10:50:24 +0000104 called. The return value is the result of the evaluated expression.
105 Syntax errors are reported as exceptions. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000106
107\bcode\begin{verbatim}
108>>> x = 1
109>>> print eval('x+1')
1102
111>>>
112\end{verbatim}\ecode
113
114 This function can also be used to execute arbitrary code objects
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000115 (e.g.\ created by \code{compile()}). In this case pass a code
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000116 object instead of a string. The code object must have been compiled
117 passing \code{'eval'} to the \var{kind} argument.
118
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000119 Hints: dynamic execution of statements is supported by the
Guido van Rossumf8601621995-01-10 10:50:24 +0000120 \code{exec} statement. Execution of statements from a file is
Guido van Rossumfb502e91995-07-07 22:58:28 +0000121 supported by the \code{execfile()} function. The \code{globals()}
122 and \code{locals()} functions returns the current global and local
123 dictionary, respectively, which may be useful
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000124 to pass around for use by \code{eval()} or \code{execfile()}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000125
126\end{funcdesc}
127
Guido van Rossumf8601621995-01-10 10:50:24 +0000128\begin{funcdesc}{execfile}{file\optional{\, globals\optional{\, locals}}}
Guido van Rossum470be141995-03-17 16:07:09 +0000129 This function is similar to the
Guido van Rossumf8601621995-01-10 10:50:24 +0000130 \code{exec} statement, but parses a file instead of a string. It is
131 different from the \code{import} statement in that it does not use
Guido van Rossum86751151995-02-28 17:14:32 +0000132 the module administration --- it reads the file unconditionally and
Guido van Rossum470be141995-03-17 16:07:09 +0000133 does not create a new module.\footnote{It is used relatively rarely
134 so does not warrant being made into a statement.}
Guido van Rossumf8601621995-01-10 10:50:24 +0000135
136 The arguments are a file name and two optional dictionaries. The
137 file is parsed and evaluated as a sequence of Python statements
138 (similarly to a module) using the \var{globals} and \var{locals}
Guido van Rossum470be141995-03-17 16:07:09 +0000139 dictionaries as global and local name space. If the \var{locals}
140 dictionary is omitted it defaults to the \var{globals} dictionary.
Guido van Rossumf8601621995-01-10 10:50:24 +0000141 If both dictionaries are omitted, the expression is executed in the
Guido van Rossum470be141995-03-17 16:07:09 +0000142 environment where \code{execfile()} is called. The return value is
143 \code{None}.
Guido van Rossumf8601621995-01-10 10:50:24 +0000144\end{funcdesc}
145
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000146\begin{funcdesc}{filter}{function\, list}
147Construct a list from those elements of \var{list} for which
148\var{function} returns true. If \var{list} is a string or a tuple,
149the result also has that type; otherwise it is always a list. If
150\var{function} is \code{None}, the identity function is assumed,
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000151i.e.\ all elements of \var{list} that are false (zero or empty) are
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000152removed.
153\end{funcdesc}
154
155\begin{funcdesc}{float}{x}
156 Convert a number to floating point. The argument may be a plain or
157 long integer or a floating point number.
158\end{funcdesc}
159
160\begin{funcdesc}{getattr}{object\, name}
161 The arguments are an object and a string. The string must be the
162 name
163 of one of the object's attributes. The result is the value of that
164 attribute. For example, \code{getattr(\var{x}, '\var{foobar}')} is equivalent to
165 \code{\var{x}.\var{foobar}}.
166\end{funcdesc}
167
Guido van Rossumfb502e91995-07-07 22:58:28 +0000168\begin{funcdesc}{globals}{}
169Return a dictionary representing the current global symbol table.
170This is always the dictionary of the current module (inside a
171function or method, this is the module where it is defined, not the
172module from which it is called).
173\end{funcdesc}
174
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000175\begin{funcdesc}{hasattr}{object\, name}
176 The arguments are an object and a string. The result is 1 if the
177 string is the name of one of the object's attributes, 0 if not.
178 (This is implemented by calling \code{getattr(object, name)} and
179 seeing whether it raises an exception or not.)
180\end{funcdesc}
181
182\begin{funcdesc}{hash}{object}
183 Return the hash value of the object (if it has one). Hash values
184 are 32-bit integers. They are used to quickly compare dictionary
185 keys during a dictionary lookup. Numeric values that compare equal
186 have the same hash value (even if they are of different types, e.g.
187 1 and 1.0).
188\end{funcdesc}
189
190\begin{funcdesc}{hex}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000191 Convert an integer number (of any size) to a hexadecimal string.
Guido van Rossum5cd75201997-01-14 18:44:23 +0000192 The result is a valid Python expression. Note: this always yields
193 an unsigned literal, e.g. on a 32-bit machine, \code{hex(-1)} yields
194 \code{'0xffffffff'}. When evaluated on a machine with the same
195 word size, this literal is evaluated as -1; at a different word
196 size, it may turn up as a large positive number or raise an
197 \code{OverflowError} exception.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000198\end{funcdesc}
199
200\begin{funcdesc}{id}{object}
201 Return the `identity' of an object. This is an integer which is
202 guaranteed to be unique and constant for this object during its
203 lifetime. (Two objects whose lifetimes are disjunct may have the
204 same id() value.) (Implementation note: this is the address of the
205 object.)
206\end{funcdesc}
207
Guido van Rossum16d6e711994-08-08 12:30:22 +0000208\begin{funcdesc}{input}{\optional{prompt}}
209 Almost equivalent to \code{eval(raw_input(\var{prompt}))}. Like
210 \code{raw_input()}, the \var{prompt} argument is optional. The difference
211 is that a long input expression may be broken over multiple lines using
212 the backslash convention.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000213\end{funcdesc}
214
215\begin{funcdesc}{int}{x}
216 Convert a number to a plain integer. The argument may be a plain or
Guido van Rossum470be141995-03-17 16:07:09 +0000217 long integer or a floating point number. Conversion of floating
218 point numbers to integers is defined by the C semantics; normally
Guido van Rossumecde7811995-03-28 13:35:14 +0000219 the conversion truncates towards zero.\footnote{This is ugly --- the
220 language definition should require truncation towards zero.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000221\end{funcdesc}
222
223\begin{funcdesc}{len}{s}
224 Return the length (the number of items) of an object. The argument
225 may be a sequence (string, tuple or list) or a mapping (dictionary).
226\end{funcdesc}
227
Guido van Rossumfb502e91995-07-07 22:58:28 +0000228\begin{funcdesc}{locals}{}
229Return a dictionary representing the current local symbol table.
230Inside a function, modifying this dictionary does not always have the
231desired effect.
232\end{funcdesc}
233
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000234\begin{funcdesc}{long}{x}
235 Convert a number to a long integer. The argument may be a plain or
236 long integer or a floating point number.
237\end{funcdesc}
238
239\begin{funcdesc}{map}{function\, list\, ...}
240Apply \var{function} to every item of \var{list} and return a list
241of the results. If additional \var{list} arguments are passed,
242\var{function} must take that many arguments and is applied to
243the items of all lists in parallel; if a list is shorter than another
244it is assumed to be extended with \code{None} items. If
245\var{function} is \code{None}, the identity function is assumed; if
246there are multiple list arguments, \code{map} returns a list
247consisting of tuples containing the corresponding items from all lists
248(i.e. a kind of transpose operation). The \var{list} arguments may be
249any kind of sequence; the result is always a list.
250\end{funcdesc}
251
252\begin{funcdesc}{max}{s}
253 Return the largest item of a non-empty sequence (string, tuple or
254 list).
255\end{funcdesc}
256
257\begin{funcdesc}{min}{s}
258 Return the smallest item of a non-empty sequence (string, tuple or
259 list).
260\end{funcdesc}
261
262\begin{funcdesc}{oct}{x}
Guido van Rossum470be141995-03-17 16:07:09 +0000263 Convert an integer number (of any size) to an octal string. The
Guido van Rossum5cd75201997-01-14 18:44:23 +0000264 result is a valid Python expression. Note: this always yields
265 an unsigned literal, e.g. on a 32-bit machine, \code{oct(-1)} yields
266 \code{'037777777777'}. When evaluated on a machine with the same
267 word size, this literal is evaluated as -1; at a different word
268 size, it may turn up as a large positive number or raise an
269 \code{OverflowError} exception.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000270\end{funcdesc}
271
Guido van Rossum7f49b7a1995-01-12 12:38:46 +0000272\begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000273 Return a new file object (described earlier under Built-in Types).
Guido van Rossum041be051994-05-03 14:46:50 +0000274 The first two arguments are the same as for \code{stdio}'s
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000275 \code{fopen()}: \var{filename} is the file name to be opened,
276 \var{mode} indicates how the file is to be opened: \code{'r'} for
277 reading, \code{'w'} for writing (truncating an existing file), and
Guido van Rossum1dde7b71996-10-11 15:57:17 +0000278 \code{'a'} opens it for appending (which on {\em some} \UNIX{}
Guido van Rossum59b328e1996-05-02 15:16:59 +0000279 systems means that {\em all} writes append to the end of the file,
280 regardless of the current seek position).
281 Modes \code{'r+'}, \code{'w+'} and
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000282 \code{'a+'} open the file for updating, provided the underlying
283 \code{stdio} library understands this. On systems that differentiate
284 between binary and text files, \code{'b'} appended to the mode opens
285 the file in binary mode. If the file cannot be opened, \code{IOError}
286 is raised.
Guido van Rossum041be051994-05-03 14:46:50 +0000287If \var{mode} is omitted, it defaults to \code{'r'}.
288The optional \var{bufsize} argument specifies the file's desired
289buffer size: 0 means unbuffered, 1 means line buffered, any other
290positive value means use a buffer of (approximately) that size. A
291negative \var{bufsize} means to use the system default, which is
292usually line buffered for for tty devices and fully buffered for other
293files.%
294\footnote{Specifying a buffer size currently has no effect on systems
295that don't have \code{setvbuf()}. The interface to specify the buffer
296size is not done using a method that calls \code{setvbuf()}, because
297that may dump core when called after any I/O has been performed, and
298there's no reliable way to determine whether this is the case.}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000299\end{funcdesc}
300
301\begin{funcdesc}{ord}{c}
302 Return the \ASCII{} value of a string of one character. E.g.,
303 \code{ord('a')} returns the integer \code{97}. This is the inverse of
304 \code{chr()}.
305\end{funcdesc}
306
Guido van Rossum16d6e711994-08-08 12:30:22 +0000307\begin{funcdesc}{pow}{x\, y\optional{\, z}}
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000308 Return \var{x} to the power \var{y}; if \var{z} is present, return
309 \var{x} to the power \var{y}, modulo \var{z} (computed more
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000310 efficiently than \code{pow(\var{x}, \var{y}) \% \var{z}}).
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000311 The arguments must have
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000312 numeric types. With mixed operand types, the rules for binary
313 arithmetic operators apply. The effective operand type is also the
314 type of the result; if the result is not expressible in this type, the
Guido van Rossum16d6e711994-08-08 12:30:22 +0000315 function raises an exception; e.g., \code{pow(2, -1)} or \code{pow(2,
316 35000)} is not allowed.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000317\end{funcdesc}
318
Guido van Rossum16d6e711994-08-08 12:30:22 +0000319\begin{funcdesc}{range}{\optional{start\,} end\optional{\, step}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000320 This is a versatile function to create lists containing arithmetic
321 progressions. It is most often used in \code{for} loops. The
322 arguments must be plain integers. If the \var{step} argument is
323 omitted, it defaults to \code{1}. If the \var{start} argument is
324 omitted, it defaults to \code{0}. The full form returns a list of
325 plain integers \code{[\var{start}, \var{start} + \var{step},
326 \var{start} + 2 * \var{step}, \ldots]}. If \var{step} is positive,
327 the last element is the largest \code{\var{start} + \var{i} *
328 \var{step}} less than \var{end}; if \var{step} is negative, the last
329 element is the largest \code{\var{start} + \var{i} * \var{step}}
Guido van Rossum470be141995-03-17 16:07:09 +0000330 greater than \var{end}. \var{step} must not be zero (or else an
331 exception is raised). Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000332
333\bcode\begin{verbatim}
334>>> range(10)
335[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
336>>> range(1, 11)
337[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
338>>> range(0, 30, 5)
339[0, 5, 10, 15, 20, 25]
340>>> range(0, 10, 3)
341[0, 3, 6, 9]
342>>> range(0, -10, -1)
343[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
344>>> range(0)
345[]
346>>> range(1, 0)
347[]
348>>>
349\end{verbatim}\ecode
350\end{funcdesc}
351
Guido van Rossum16d6e711994-08-08 12:30:22 +0000352\begin{funcdesc}{raw_input}{\optional{prompt}}
353 If the \var{prompt} argument is present, it is written to standard output
354 without a trailing newline. The function then reads a line from input,
355 converts it to a string (stripping a trailing newline), and returns that.
356 When \EOF{} is read, \code{EOFError} is raised. Example:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000357
358\bcode\begin{verbatim}
359>>> s = raw_input('--> ')
360--> Monty Python's Flying Circus
361>>> s
Guido van Rossum470be141995-03-17 16:07:09 +0000362"Monty Python's Flying Circus"
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000363>>>
364\end{verbatim}\ecode
365\end{funcdesc}
366
Guido van Rossum16d6e711994-08-08 12:30:22 +0000367\begin{funcdesc}{reduce}{function\, list\optional{\, initializer}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000368Apply the binary \var{function} to the items of \var{list} so as to
369reduce the list to a single value. E.g.,
370\code{reduce(lambda x, y: x*y, \var{list}, 1)} returns the product of
371the elements of \var{list}. The optional \var{initializer} can be
372thought of as being prepended to \var{list} so as to allow reduction
373of an empty \var{list}. The \var{list} arguments may be any kind of
374sequence.
375\end{funcdesc}
376
377\begin{funcdesc}{reload}{module}
Guido van Rossum470be141995-03-17 16:07:09 +0000378Re-parse and re-initialize an already imported \var{module}. The
379argument must be a module object, so it must have been successfully
380imported before. This is useful if you have edited the module source
381file using an external editor and want to try out the new version
382without leaving the Python interpreter. The return value is the
383module object (i.e.\ the same as the \var{module} argument).
384
385There are a number of caveats:
386
387If a module is syntactically correct but its initialization fails, the
388first \code{import} statement for it does not bind its name locally,
389but does store a (partially initialized) module object in
390\code{sys.modules}. To reload the module you must first
391\code{import} it again (this will bind the name to the partially
392initialized module object) before you can \code{reload()} it.
393
394When a module is reloaded, its dictionary (containing the module's
395global variables) is retained. Redefinitions of names will override
396the old definitions, so this is generally not a problem. If the new
397version of a module does not define a name that was defined by the old
398version, the old definition remains. This feature can be used to the
399module's advantage if it maintains a global table or cache of objects
400--- with a \code{try} statement it can test for the table's presence
401and skip its initialization if desired.
402
403It is legal though generally not very useful to reload built-in or
404dynamically loaded modules, except for \code{sys}, \code{__main__} and
405\code{__builtin__}. In certain cases, however, extension modules are
406not designed to be initialized more than once, and may fail in
407arbitrary ways when reloaded.
408
409If a module imports objects from another module using \code{from}
Fred Drake4b3f0311996-12-13 22:04:31 +0000410\ldots{} \code{import} \ldots{}, calling \code{reload()} for the other
Guido van Rossum470be141995-03-17 16:07:09 +0000411module does not redefine the objects imported from it --- one way
412around this is to re-execute the \code{from} statement, another is to
413use \code{import} and qualified names (\var{module}.\var{name})
414instead.
415
416If a module instantiates instances of a class, reloading the module
417that defines the class does not affect the method definitions of the
418instances --- they continue to use the old class definition. The same
419is true for derived classes.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000420\end{funcdesc}
421
422\begin{funcdesc}{repr}{object}
423Return a string containing a printable representation of an object.
424This is the same value yielded by conversions (reverse quotes).
425It is sometimes useful to be able to access this operation as an
426ordinary function. For many types, this function makes an attempt
427to return a string that would yield an object with the same value
428when passed to \code{eval()}.
429\end{funcdesc}
430
431\begin{funcdesc}{round}{x\, n}
432 Return the floating point value \var{x} rounded to \var{n} digits
433 after the decimal point. If \var{n} is omitted, it defaults to zero.
434 The result is a floating point number. Values are rounded to the
435 closest multiple of 10 to the power minus \var{n}; if two multiples
436 are equally close, rounding is done away from 0 (so e.g.
437 \code{round(0.5)} is \code{1.0} and \code{round(-0.5)} is \code{-1.0}).
438\end{funcdesc}
439
440\begin{funcdesc}{setattr}{object\, name\, value}
441 This is the counterpart of \code{getattr}. The arguments are an
442 object, a string and an arbitrary value. The string must be the name
443 of one of the object's attributes. The function assigns the value to
444 the attribute, provided the object allows it. For example,
445 \code{setattr(\var{x}, '\var{foobar}', 123)} is equivalent to
446 \code{\var{x}.\var{foobar} = 123}.
447\end{funcdesc}
448
449\begin{funcdesc}{str}{object}
450Return a string containing a nicely printable representation of an
451object. For strings, this returns the string itself. The difference
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000452with \code{repr(\var{object})} is that \code{str(\var{object})} does not
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000453always attempt to return a string that is acceptable to \code{eval()};
454its goal is to return a printable string.
455\end{funcdesc}
456
Guido van Rossum470be141995-03-17 16:07:09 +0000457\begin{funcdesc}{tuple}{sequence}
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000458Return a tuple whose items are the same and in the same order as
Guido van Rossum470be141995-03-17 16:07:09 +0000459\var{sequence}'s items. If \var{sequence} is alread a tuple, it
Guido van Rossumb8b264b1994-08-12 13:13:50 +0000460is returned unchanged. For instance, \code{tuple('abc')} returns
461returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
462\code{(1, 2, 3)}.
463\end{funcdesc}
464
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000465\begin{funcdesc}{type}{object}
Guido van Rossum470be141995-03-17 16:07:09 +0000466Return the type of an \var{object}. The return value is a type
467object. The standard module \code{types} defines names for all
468built-in types.
469\stmodindex{types}
470\obindex{type}
471For instance:
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000472
473\bcode\begin{verbatim}
Guido van Rossum470be141995-03-17 16:07:09 +0000474>>> import types
475>>> if type(x) == types.StringType: print "It's a string"
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000476\end{verbatim}\ecode
477\end{funcdesc}
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000478
Guido van Rossum6bb1adc1995-03-13 10:03:32 +0000479\begin{funcdesc}{vars}{\optional{object}}
Guido van Rossum17383111994-04-21 10:32:28 +0000480Without arguments, return a dictionary corresponding to the current
481local symbol table. With a module, class or class instance object as
482argument (or anything else that has a \code{__dict__} attribute),
483returns a dictionary corresponding to the object's symbol table.
484The returned dictionary should not be modified: the effects on the
485corresponding symbol table are undefined.%
486\footnote{In the current implementation, local variable bindings
487cannot normally be affected this way, but variables retrieved from
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000488other scopes (e.g. modules) can be. This may change.}
Guido van Rossum17383111994-04-21 10:32:28 +0000489\end{funcdesc}
490
Guido van Rossum16d6e711994-08-08 12:30:22 +0000491\begin{funcdesc}{xrange}{\optional{start\,} end\optional{\, step}}
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000492This function is very similar to \code{range()}, but returns an
493``xrange object'' instead of a list. This is an opaque sequence type
494which yields the same values as the corresponding list, without
495actually storing them all simultaneously. The advantage of
496\code{xrange()} over \code{range()} is minimal (since \code{xrange()}
497still has to create the values when asked for them) except when a very
Guido van Rossum470be141995-03-17 16:07:09 +0000498large range is used on a memory-starved machine (e.g. MS-DOS) or when all
Guido van Rossum68cfbe71994-02-24 11:28:27 +0000499of the range's elements are never used (e.g. when the loop is usually
500terminated with \code{break}).
501\end{funcdesc}