Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1 | \section{Built-in Functions} |
| 2 | |
| 3 | The Python interpreter has a number of functions built into it that |
| 4 | are 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 Rossum | 0568d5e | 1995-10-08 01:06:46 +0000 | [diff] [blame] | 13 | \begin{funcdesc}{apply}{function\, args\optional{, keywords}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 14 | The \var{function} argument must be a callable object (a user-defined or |
| 15 | built-in function or method, or a class object) and the \var{args} |
| 16 | argument must be a tuple. The \var{function} is called with |
| 17 | \var{args} as argument list; the number of arguments is the the length |
| 18 | of the tuple. (This is different from just calling |
| 19 | \code{\var{func}(\var{args})}, since in that case there is always |
| 20 | exactly one argument.) |
Guido van Rossum | 0568d5e | 1995-10-08 01:06:46 +0000 | [diff] [blame] | 21 | If the optional \var{keywords} argument is present, it must be a |
| 22 | dictionary whose keys are strings. It specifies keyword arguments to |
| 23 | be added to the end of the the argument list. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 24 | \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 Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 48 | executed by an \code{exec} statement or evaluated by a call to |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 49 | \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 Rossum | fb502e9 | 1995-07-07 22:58:28 +0000 | [diff] [blame] | 53 | \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 Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 58 | \end{funcdesc} |
| 59 | |
Guido van Rossum | 1cd26f2 | 1997-04-02 06:04:02 +0000 | [diff] [blame^] | 60 | \begin{funcdesc}{complex}{real\optional{, imag}} |
| 61 | Create a complex number with the value \var{real} + \var{imag}*j. |
| 62 | Each argument may be any numeric type (including complex). |
| 63 | If \var{imag} is omitted, it defaults to zero and the function |
| 64 | serves as a numeric conversion function like \code{int}, \code{long} |
| 65 | and \code{float}. |
| 66 | \end{funcdesc} |
| 67 | |
Guido van Rossum | 1efbb0f | 1994-08-16 22:15:11 +0000 | [diff] [blame] | 68 | \begin{funcdesc}{delattr}{object\, name} |
| 69 | This is a relative of \code{setattr}. The arguments are an |
| 70 | object and a string. The string must be the name |
| 71 | of one of the object's attributes. The function deletes |
| 72 | the named attribute, provided the object allows it. For example, |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 73 | \code{delattr(\var{x}, '\var{foobar}')} is equivalent to |
Guido van Rossum | 1efbb0f | 1994-08-16 22:15:11 +0000 | [diff] [blame] | 74 | \code{del \var{x}.\var{foobar}}. |
| 75 | \end{funcdesc} |
| 76 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 77 | \begin{funcdesc}{dir}{} |
| 78 | Without arguments, return the list of names in the current local |
| 79 | symbol table. With a module, class or class instance object as |
| 80 | argument (or anything else that has a \code{__dict__} attribute), |
| 81 | returns the list of names in that object's attribute dictionary. |
| 82 | The resulting list is sorted. For example: |
| 83 | |
| 84 | \bcode\begin{verbatim} |
| 85 | >>> import sys |
| 86 | >>> dir() |
| 87 | ['sys'] |
| 88 | >>> dir(sys) |
| 89 | ['argv', 'exit', 'modules', 'path', 'stderr', 'stdin', 'stdout'] |
| 90 | >>> |
| 91 | \end{verbatim}\ecode |
| 92 | \end{funcdesc} |
| 93 | |
| 94 | \begin{funcdesc}{divmod}{a\, b} |
| 95 | Take two numbers as arguments and return a pair of integers |
| 96 | consisting of their integer quotient and remainder. With mixed |
| 97 | operand types, the rules for binary arithmetic operators apply. For |
| 98 | plain and long integers, the result is the same as |
| 99 | \code{(\var{a} / \var{b}, \var{a} \%{} \var{b})}. |
| 100 | For floating point numbers the result is the same as |
| 101 | \code{(math.floor(\var{a} / \var{b}), \var{a} \%{} \var{b})}. |
| 102 | \end{funcdesc} |
| 103 | |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 104 | \begin{funcdesc}{eval}{expression\optional{\, globals\optional{\, locals}}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 105 | The arguments are a string and two optional dictionaries. The |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 106 | \var{expression} argument is parsed and evaluated as a Python |
| 107 | expression (technically speaking, a condition list) using the |
| 108 | \var{globals} and \var{locals} dictionaries as global and local name |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 109 | space. If the \var{locals} dictionary is omitted it defaults to |
| 110 | the \var{globals} dictionary. If both dictionaries are omitted, the |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 111 | expression is executed in the environment where \code{eval} is |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 112 | called. The return value is the result of the evaluated expression. |
| 113 | Syntax errors are reported as exceptions. Example: |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 114 | |
| 115 | \bcode\begin{verbatim} |
| 116 | >>> x = 1 |
| 117 | >>> print eval('x+1') |
| 118 | 2 |
| 119 | >>> |
| 120 | \end{verbatim}\ecode |
| 121 | |
| 122 | This function can also be used to execute arbitrary code objects |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 123 | (e.g.\ created by \code{compile()}). In this case pass a code |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 124 | object instead of a string. The code object must have been compiled |
| 125 | passing \code{'eval'} to the \var{kind} argument. |
| 126 | |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 127 | Hints: dynamic execution of statements is supported by the |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 128 | \code{exec} statement. Execution of statements from a file is |
Guido van Rossum | fb502e9 | 1995-07-07 22:58:28 +0000 | [diff] [blame] | 129 | supported by the \code{execfile()} function. The \code{globals()} |
| 130 | and \code{locals()} functions returns the current global and local |
| 131 | dictionary, respectively, which may be useful |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 132 | to pass around for use by \code{eval()} or \code{execfile()}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 133 | |
| 134 | \end{funcdesc} |
| 135 | |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 136 | \begin{funcdesc}{execfile}{file\optional{\, globals\optional{\, locals}}} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 137 | This function is similar to the |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 138 | \code{exec} statement, but parses a file instead of a string. It is |
| 139 | different from the \code{import} statement in that it does not use |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 140 | the module administration --- it reads the file unconditionally and |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 141 | does not create a new module.\footnote{It is used relatively rarely |
| 142 | so does not warrant being made into a statement.} |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 143 | |
| 144 | The arguments are a file name and two optional dictionaries. The |
| 145 | file is parsed and evaluated as a sequence of Python statements |
| 146 | (similarly to a module) using the \var{globals} and \var{locals} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 147 | dictionaries as global and local name space. If the \var{locals} |
| 148 | dictionary is omitted it defaults to the \var{globals} dictionary. |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 149 | If both dictionaries are omitted, the expression is executed in the |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 150 | environment where \code{execfile()} is called. The return value is |
| 151 | \code{None}. |
Guido van Rossum | f860162 | 1995-01-10 10:50:24 +0000 | [diff] [blame] | 152 | \end{funcdesc} |
| 153 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 154 | \begin{funcdesc}{filter}{function\, list} |
| 155 | Construct a list from those elements of \var{list} for which |
| 156 | \var{function} returns true. If \var{list} is a string or a tuple, |
| 157 | the result also has that type; otherwise it is always a list. If |
| 158 | \var{function} is \code{None}, the identity function is assumed, |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 159 | i.e.\ all elements of \var{list} that are false (zero or empty) are |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 160 | removed. |
| 161 | \end{funcdesc} |
| 162 | |
| 163 | \begin{funcdesc}{float}{x} |
Guido van Rossum | 1cd26f2 | 1997-04-02 06:04:02 +0000 | [diff] [blame^] | 164 | Convert a string or a number to floating point. If the argument is a |
| 165 | string, it must contain a possibly singed decimal or floating point |
| 166 | number, possibly embedded in whitespace; |
| 167 | this behaves identical to \code{string.atof(\var{x})}. |
| 168 | Otherwise, the argument may be a plain or |
| 169 | long integer or a floating point number, and a floating point number |
| 170 | with the same value (within Python's floating point precision) is |
| 171 | returned. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 172 | \end{funcdesc} |
| 173 | |
| 174 | \begin{funcdesc}{getattr}{object\, name} |
| 175 | The arguments are an object and a string. The string must be the |
| 176 | name |
| 177 | of one of the object's attributes. The result is the value of that |
| 178 | attribute. For example, \code{getattr(\var{x}, '\var{foobar}')} is equivalent to |
| 179 | \code{\var{x}.\var{foobar}}. |
| 180 | \end{funcdesc} |
| 181 | |
Guido van Rossum | fb502e9 | 1995-07-07 22:58:28 +0000 | [diff] [blame] | 182 | \begin{funcdesc}{globals}{} |
| 183 | Return a dictionary representing the current global symbol table. |
| 184 | This is always the dictionary of the current module (inside a |
| 185 | function or method, this is the module where it is defined, not the |
| 186 | module from which it is called). |
| 187 | \end{funcdesc} |
| 188 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 189 | \begin{funcdesc}{hasattr}{object\, name} |
| 190 | The arguments are an object and a string. The result is 1 if the |
| 191 | string is the name of one of the object's attributes, 0 if not. |
| 192 | (This is implemented by calling \code{getattr(object, name)} and |
| 193 | seeing whether it raises an exception or not.) |
| 194 | \end{funcdesc} |
| 195 | |
| 196 | \begin{funcdesc}{hash}{object} |
| 197 | Return the hash value of the object (if it has one). Hash values |
| 198 | are 32-bit integers. They are used to quickly compare dictionary |
| 199 | keys during a dictionary lookup. Numeric values that compare equal |
| 200 | have the same hash value (even if they are of different types, e.g. |
| 201 | 1 and 1.0). |
| 202 | \end{funcdesc} |
| 203 | |
| 204 | \begin{funcdesc}{hex}{x} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 205 | Convert an integer number (of any size) to a hexadecimal string. |
Guido van Rossum | 5cd7520 | 1997-01-14 18:44:23 +0000 | [diff] [blame] | 206 | The result is a valid Python expression. Note: this always yields |
| 207 | an unsigned literal, e.g. on a 32-bit machine, \code{hex(-1)} yields |
| 208 | \code{'0xffffffff'}. When evaluated on a machine with the same |
| 209 | word size, this literal is evaluated as -1; at a different word |
| 210 | size, it may turn up as a large positive number or raise an |
| 211 | \code{OverflowError} exception. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 212 | \end{funcdesc} |
| 213 | |
| 214 | \begin{funcdesc}{id}{object} |
| 215 | Return the `identity' of an object. This is an integer which is |
| 216 | guaranteed to be unique and constant for this object during its |
| 217 | lifetime. (Two objects whose lifetimes are disjunct may have the |
| 218 | same id() value.) (Implementation note: this is the address of the |
| 219 | object.) |
| 220 | \end{funcdesc} |
| 221 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 222 | \begin{funcdesc}{input}{\optional{prompt}} |
| 223 | Almost equivalent to \code{eval(raw_input(\var{prompt}))}. Like |
| 224 | \code{raw_input()}, the \var{prompt} argument is optional. The difference |
| 225 | is that a long input expression may be broken over multiple lines using |
| 226 | the backslash convention. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 227 | \end{funcdesc} |
| 228 | |
Guido van Rossum | 3978d75 | 1997-03-03 16:03:27 +0000 | [diff] [blame] | 229 | \begin{funcdesc}{intern}{string} |
| 230 | Enter \var{string} in the table of ``interned'' strings and return |
| 231 | the interned string -- which is \var{string} itself or a copy. |
| 232 | Interning strings is useful to gain a little performance on |
| 233 | dictionary lookup -- if the keys in a dictionary are interned, and |
| 234 | the lookup key is interned, the key comparisons (after hashing) can |
| 235 | be done by a pointer compare instead of a string compare. Normally, |
| 236 | the names used in Python programs are automatically interned, and |
| 237 | the dictionaries used to hold module, class or instance attributes |
| 238 | have interned keys. Interned strings are immortal (i.e. never get |
| 239 | garbage collected). |
| 240 | \end{funcdesc} |
| 241 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 242 | \begin{funcdesc}{int}{x} |
Guido van Rossum | 1cd26f2 | 1997-04-02 06:04:02 +0000 | [diff] [blame^] | 243 | Convert a string or number to a plain integer. If the argument is a |
| 244 | string, it must contain a possibly singed decimal number |
| 245 | representable as a Python integer, possibly embedded in whitespace; |
| 246 | this behaves identical to \code{string.atoi(\var{x})}. |
| 247 | Otherwise, the argument may be a plain or |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 248 | long integer or a floating point number. Conversion of floating |
| 249 | point numbers to integers is defined by the C semantics; normally |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 250 | the conversion truncates towards zero.\footnote{This is ugly --- the |
| 251 | language definition should require truncation towards zero.} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 252 | \end{funcdesc} |
| 253 | |
| 254 | \begin{funcdesc}{len}{s} |
| 255 | Return the length (the number of items) of an object. The argument |
| 256 | may be a sequence (string, tuple or list) or a mapping (dictionary). |
| 257 | \end{funcdesc} |
| 258 | |
Guido van Rossum | fb502e9 | 1995-07-07 22:58:28 +0000 | [diff] [blame] | 259 | \begin{funcdesc}{locals}{} |
| 260 | Return a dictionary representing the current local symbol table. |
| 261 | Inside a function, modifying this dictionary does not always have the |
| 262 | desired effect. |
| 263 | \end{funcdesc} |
| 264 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 265 | \begin{funcdesc}{long}{x} |
Guido van Rossum | 1cd26f2 | 1997-04-02 06:04:02 +0000 | [diff] [blame^] | 266 | Convert a string or number to a long integer. If the argument is a |
| 267 | string, it must contain a possibly singed decimal number of |
| 268 | arbitrary size, possibly embedded in whitespace; |
| 269 | this behaves identical to \code{string.atol(\var{x})}. |
| 270 | Otherwise, the argument may be a plain or |
| 271 | long integer or a floating point number, and a long interger with |
| 272 | the same value is returned. Conversion of floating |
| 273 | point numbers to integers is defined by the C semantics; |
| 274 | see the description of \code{int()}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 275 | \end{funcdesc} |
| 276 | |
| 277 | \begin{funcdesc}{map}{function\, list\, ...} |
| 278 | Apply \var{function} to every item of \var{list} and return a list |
| 279 | of the results. If additional \var{list} arguments are passed, |
| 280 | \var{function} must take that many arguments and is applied to |
| 281 | the items of all lists in parallel; if a list is shorter than another |
| 282 | it is assumed to be extended with \code{None} items. If |
| 283 | \var{function} is \code{None}, the identity function is assumed; if |
| 284 | there are multiple list arguments, \code{map} returns a list |
| 285 | consisting of tuples containing the corresponding items from all lists |
| 286 | (i.e. a kind of transpose operation). The \var{list} arguments may be |
| 287 | any kind of sequence; the result is always a list. |
| 288 | \end{funcdesc} |
| 289 | |
| 290 | \begin{funcdesc}{max}{s} |
| 291 | Return the largest item of a non-empty sequence (string, tuple or |
| 292 | list). |
| 293 | \end{funcdesc} |
| 294 | |
| 295 | \begin{funcdesc}{min}{s} |
| 296 | Return the smallest item of a non-empty sequence (string, tuple or |
| 297 | list). |
| 298 | \end{funcdesc} |
| 299 | |
| 300 | \begin{funcdesc}{oct}{x} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 301 | Convert an integer number (of any size) to an octal string. The |
Guido van Rossum | 5cd7520 | 1997-01-14 18:44:23 +0000 | [diff] [blame] | 302 | result is a valid Python expression. Note: this always yields |
| 303 | an unsigned literal, e.g. on a 32-bit machine, \code{oct(-1)} yields |
| 304 | \code{'037777777777'}. When evaluated on a machine with the same |
| 305 | word size, this literal is evaluated as -1; at a different word |
| 306 | size, it may turn up as a large positive number or raise an |
| 307 | \code{OverflowError} exception. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 308 | \end{funcdesc} |
| 309 | |
Guido van Rossum | 7f49b7a | 1995-01-12 12:38:46 +0000 | [diff] [blame] | 310 | \begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 311 | Return a new file object (described earlier under Built-in Types). |
Guido van Rossum | 041be05 | 1994-05-03 14:46:50 +0000 | [diff] [blame] | 312 | The first two arguments are the same as for \code{stdio}'s |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 313 | \code{fopen()}: \var{filename} is the file name to be opened, |
| 314 | \var{mode} indicates how the file is to be opened: \code{'r'} for |
| 315 | reading, \code{'w'} for writing (truncating an existing file), and |
Guido van Rossum | 1dde7b7 | 1996-10-11 15:57:17 +0000 | [diff] [blame] | 316 | \code{'a'} opens it for appending (which on {\em some} \UNIX{} |
Guido van Rossum | 59b328e | 1996-05-02 15:16:59 +0000 | [diff] [blame] | 317 | systems means that {\em all} writes append to the end of the file, |
| 318 | regardless of the current seek position). |
| 319 | Modes \code{'r+'}, \code{'w+'} and |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 320 | \code{'a+'} open the file for updating, provided the underlying |
| 321 | \code{stdio} library understands this. On systems that differentiate |
| 322 | between binary and text files, \code{'b'} appended to the mode opens |
| 323 | the file in binary mode. If the file cannot be opened, \code{IOError} |
| 324 | is raised. |
Guido van Rossum | 041be05 | 1994-05-03 14:46:50 +0000 | [diff] [blame] | 325 | If \var{mode} is omitted, it defaults to \code{'r'}. |
| 326 | The optional \var{bufsize} argument specifies the file's desired |
| 327 | buffer size: 0 means unbuffered, 1 means line buffered, any other |
| 328 | positive value means use a buffer of (approximately) that size. A |
| 329 | negative \var{bufsize} means to use the system default, which is |
| 330 | usually line buffered for for tty devices and fully buffered for other |
| 331 | files.% |
| 332 | \footnote{Specifying a buffer size currently has no effect on systems |
| 333 | that don't have \code{setvbuf()}. The interface to specify the buffer |
| 334 | size is not done using a method that calls \code{setvbuf()}, because |
| 335 | that may dump core when called after any I/O has been performed, and |
| 336 | there's no reliable way to determine whether this is the case.} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 337 | \end{funcdesc} |
| 338 | |
| 339 | \begin{funcdesc}{ord}{c} |
| 340 | Return the \ASCII{} value of a string of one character. E.g., |
| 341 | \code{ord('a')} returns the integer \code{97}. This is the inverse of |
| 342 | \code{chr()}. |
| 343 | \end{funcdesc} |
| 344 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 345 | \begin{funcdesc}{pow}{x\, y\optional{\, z}} |
Guido van Rossum | b8b264b | 1994-08-12 13:13:50 +0000 | [diff] [blame] | 346 | Return \var{x} to the power \var{y}; if \var{z} is present, return |
| 347 | \var{x} to the power \var{y}, modulo \var{z} (computed more |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 348 | efficiently than \code{pow(\var{x}, \var{y}) \% \var{z}}). |
Guido van Rossum | b8b264b | 1994-08-12 13:13:50 +0000 | [diff] [blame] | 349 | The arguments must have |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 350 | numeric types. With mixed operand types, the rules for binary |
| 351 | arithmetic operators apply. The effective operand type is also the |
| 352 | type of the result; if the result is not expressible in this type, the |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 353 | function raises an exception; e.g., \code{pow(2, -1)} or \code{pow(2, |
| 354 | 35000)} is not allowed. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 355 | \end{funcdesc} |
| 356 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 357 | \begin{funcdesc}{range}{\optional{start\,} end\optional{\, step}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 358 | This is a versatile function to create lists containing arithmetic |
| 359 | progressions. It is most often used in \code{for} loops. The |
| 360 | arguments must be plain integers. If the \var{step} argument is |
| 361 | omitted, it defaults to \code{1}. If the \var{start} argument is |
| 362 | omitted, it defaults to \code{0}. The full form returns a list of |
| 363 | plain integers \code{[\var{start}, \var{start} + \var{step}, |
| 364 | \var{start} + 2 * \var{step}, \ldots]}. If \var{step} is positive, |
| 365 | the last element is the largest \code{\var{start} + \var{i} * |
| 366 | \var{step}} less than \var{end}; if \var{step} is negative, the last |
| 367 | element is the largest \code{\var{start} + \var{i} * \var{step}} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 368 | greater than \var{end}. \var{step} must not be zero (or else an |
| 369 | exception is raised). Example: |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 370 | |
| 371 | \bcode\begin{verbatim} |
| 372 | >>> range(10) |
| 373 | [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] |
| 374 | >>> range(1, 11) |
| 375 | [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] |
| 376 | >>> range(0, 30, 5) |
| 377 | [0, 5, 10, 15, 20, 25] |
| 378 | >>> range(0, 10, 3) |
| 379 | [0, 3, 6, 9] |
| 380 | >>> range(0, -10, -1) |
| 381 | [0, -1, -2, -3, -4, -5, -6, -7, -8, -9] |
| 382 | >>> range(0) |
| 383 | [] |
| 384 | >>> range(1, 0) |
| 385 | [] |
| 386 | >>> |
| 387 | \end{verbatim}\ecode |
| 388 | \end{funcdesc} |
| 389 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 390 | \begin{funcdesc}{raw_input}{\optional{prompt}} |
| 391 | If the \var{prompt} argument is present, it is written to standard output |
| 392 | without a trailing newline. The function then reads a line from input, |
| 393 | converts it to a string (stripping a trailing newline), and returns that. |
| 394 | When \EOF{} is read, \code{EOFError} is raised. Example: |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 395 | |
| 396 | \bcode\begin{verbatim} |
| 397 | >>> s = raw_input('--> ') |
| 398 | --> Monty Python's Flying Circus |
| 399 | >>> s |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 400 | "Monty Python's Flying Circus" |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 401 | >>> |
| 402 | \end{verbatim}\ecode |
| 403 | \end{funcdesc} |
| 404 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 405 | \begin{funcdesc}{reduce}{function\, list\optional{\, initializer}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 406 | Apply the binary \var{function} to the items of \var{list} so as to |
| 407 | reduce the list to a single value. E.g., |
| 408 | \code{reduce(lambda x, y: x*y, \var{list}, 1)} returns the product of |
| 409 | the elements of \var{list}. The optional \var{initializer} can be |
| 410 | thought of as being prepended to \var{list} so as to allow reduction |
| 411 | of an empty \var{list}. The \var{list} arguments may be any kind of |
| 412 | sequence. |
| 413 | \end{funcdesc} |
| 414 | |
| 415 | \begin{funcdesc}{reload}{module} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 416 | Re-parse and re-initialize an already imported \var{module}. The |
| 417 | argument must be a module object, so it must have been successfully |
| 418 | imported before. This is useful if you have edited the module source |
| 419 | file using an external editor and want to try out the new version |
| 420 | without leaving the Python interpreter. The return value is the |
| 421 | module object (i.e.\ the same as the \var{module} argument). |
| 422 | |
| 423 | There are a number of caveats: |
| 424 | |
| 425 | If a module is syntactically correct but its initialization fails, the |
| 426 | first \code{import} statement for it does not bind its name locally, |
| 427 | but does store a (partially initialized) module object in |
| 428 | \code{sys.modules}. To reload the module you must first |
| 429 | \code{import} it again (this will bind the name to the partially |
| 430 | initialized module object) before you can \code{reload()} it. |
| 431 | |
| 432 | When a module is reloaded, its dictionary (containing the module's |
| 433 | global variables) is retained. Redefinitions of names will override |
| 434 | the old definitions, so this is generally not a problem. If the new |
| 435 | version of a module does not define a name that was defined by the old |
| 436 | version, the old definition remains. This feature can be used to the |
| 437 | module's advantage if it maintains a global table or cache of objects |
| 438 | --- with a \code{try} statement it can test for the table's presence |
| 439 | and skip its initialization if desired. |
| 440 | |
| 441 | It is legal though generally not very useful to reload built-in or |
| 442 | dynamically loaded modules, except for \code{sys}, \code{__main__} and |
| 443 | \code{__builtin__}. In certain cases, however, extension modules are |
| 444 | not designed to be initialized more than once, and may fail in |
| 445 | arbitrary ways when reloaded. |
| 446 | |
| 447 | If a module imports objects from another module using \code{from} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 448 | \ldots{} \code{import} \ldots{}, calling \code{reload()} for the other |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 449 | module does not redefine the objects imported from it --- one way |
| 450 | around this is to re-execute the \code{from} statement, another is to |
| 451 | use \code{import} and qualified names (\var{module}.\var{name}) |
| 452 | instead. |
| 453 | |
| 454 | If a module instantiates instances of a class, reloading the module |
| 455 | that defines the class does not affect the method definitions of the |
| 456 | instances --- they continue to use the old class definition. The same |
| 457 | is true for derived classes. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 458 | \end{funcdesc} |
| 459 | |
| 460 | \begin{funcdesc}{repr}{object} |
| 461 | Return a string containing a printable representation of an object. |
| 462 | This is the same value yielded by conversions (reverse quotes). |
| 463 | It is sometimes useful to be able to access this operation as an |
| 464 | ordinary function. For many types, this function makes an attempt |
| 465 | to return a string that would yield an object with the same value |
| 466 | when passed to \code{eval()}. |
| 467 | \end{funcdesc} |
| 468 | |
| 469 | \begin{funcdesc}{round}{x\, n} |
| 470 | Return the floating point value \var{x} rounded to \var{n} digits |
| 471 | after the decimal point. If \var{n} is omitted, it defaults to zero. |
| 472 | The result is a floating point number. Values are rounded to the |
| 473 | closest multiple of 10 to the power minus \var{n}; if two multiples |
| 474 | are equally close, rounding is done away from 0 (so e.g. |
| 475 | \code{round(0.5)} is \code{1.0} and \code{round(-0.5)} is \code{-1.0}). |
| 476 | \end{funcdesc} |
| 477 | |
| 478 | \begin{funcdesc}{setattr}{object\, name\, value} |
| 479 | This is the counterpart of \code{getattr}. The arguments are an |
| 480 | object, a string and an arbitrary value. The string must be the name |
| 481 | of one of the object's attributes. The function assigns the value to |
| 482 | the attribute, provided the object allows it. For example, |
| 483 | \code{setattr(\var{x}, '\var{foobar}', 123)} is equivalent to |
| 484 | \code{\var{x}.\var{foobar} = 123}. |
| 485 | \end{funcdesc} |
| 486 | |
| 487 | \begin{funcdesc}{str}{object} |
| 488 | Return a string containing a nicely printable representation of an |
| 489 | object. For strings, this returns the string itself. The difference |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 490 | with \code{repr(\var{object})} is that \code{str(\var{object})} does not |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 491 | always attempt to return a string that is acceptable to \code{eval()}; |
| 492 | its goal is to return a printable string. |
| 493 | \end{funcdesc} |
| 494 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 495 | \begin{funcdesc}{tuple}{sequence} |
Guido van Rossum | b8b264b | 1994-08-12 13:13:50 +0000 | [diff] [blame] | 496 | Return a tuple whose items are the same and in the same order as |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 497 | \var{sequence}'s items. If \var{sequence} is alread a tuple, it |
Guido van Rossum | b8b264b | 1994-08-12 13:13:50 +0000 | [diff] [blame] | 498 | is returned unchanged. For instance, \code{tuple('abc')} returns |
| 499 | returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns |
| 500 | \code{(1, 2, 3)}. |
| 501 | \end{funcdesc} |
| 502 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 503 | \begin{funcdesc}{type}{object} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 504 | Return the type of an \var{object}. The return value is a type |
| 505 | object. The standard module \code{types} defines names for all |
| 506 | built-in types. |
| 507 | \stmodindex{types} |
| 508 | \obindex{type} |
| 509 | For instance: |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 510 | |
| 511 | \bcode\begin{verbatim} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 512 | >>> import types |
| 513 | >>> if type(x) == types.StringType: print "It's a string" |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 514 | \end{verbatim}\ecode |
| 515 | \end{funcdesc} |
Guido van Rossum | 68cfbe7 | 1994-02-24 11:28:27 +0000 | [diff] [blame] | 516 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 517 | \begin{funcdesc}{vars}{\optional{object}} |
Guido van Rossum | 1738311 | 1994-04-21 10:32:28 +0000 | [diff] [blame] | 518 | Without arguments, return a dictionary corresponding to the current |
| 519 | local symbol table. With a module, class or class instance object as |
| 520 | argument (or anything else that has a \code{__dict__} attribute), |
| 521 | returns a dictionary corresponding to the object's symbol table. |
| 522 | The returned dictionary should not be modified: the effects on the |
| 523 | corresponding symbol table are undefined.% |
| 524 | \footnote{In the current implementation, local variable bindings |
| 525 | cannot normally be affected this way, but variables retrieved from |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 526 | other scopes (e.g. modules) can be. This may change.} |
Guido van Rossum | 1738311 | 1994-04-21 10:32:28 +0000 | [diff] [blame] | 527 | \end{funcdesc} |
| 528 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 529 | \begin{funcdesc}{xrange}{\optional{start\,} end\optional{\, step}} |
Guido van Rossum | 68cfbe7 | 1994-02-24 11:28:27 +0000 | [diff] [blame] | 530 | This function is very similar to \code{range()}, but returns an |
| 531 | ``xrange object'' instead of a list. This is an opaque sequence type |
| 532 | which yields the same values as the corresponding list, without |
| 533 | actually storing them all simultaneously. The advantage of |
| 534 | \code{xrange()} over \code{range()} is minimal (since \code{xrange()} |
| 535 | still has to create the values when asked for them) except when a very |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 536 | large range is used on a memory-starved machine (e.g. MS-DOS) or when all |
Guido van Rossum | 68cfbe7 | 1994-02-24 11:28:27 +0000 | [diff] [blame] | 537 | of the range's elements are never used (e.g. when the loop is usually |
| 538 | terminated with \code{break}). |
| 539 | \end{funcdesc} |