blob: 25ab8a4b38f7ee8fe2a125681ac786b823ff51f4 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2.. _built-in-funcs:
3
4Built-in Functions
5==================
6
7The Python interpreter has a number of functions built into it that are always
8available. They are listed here in alphabetical order.
9
10
11.. function:: __import__(name[, globals[, locals[, fromlist[, level]]]])
12
13 .. index::
14 statement: import
15 module: ihooks
16 module: rexec
17 module: imp
18
19 .. note::
20
21 This is an advanced function that is not needed in everyday Python
22 programming.
23
24 The function is invoked by the :keyword:`import` statement. It mainly exists
25 so that you can replace it with another function that has a compatible
26 interface, in order to change the semantics of the :keyword:`import` statement.
27 For examples of why and how you would do this, see the standard library modules
28 :mod:`ihooks` and :mod:`rexec`. See also the built-in module :mod:`imp`, which
29 defines some useful operations out of which you can build your own
30 :func:`__import__` function.
31
32 For example, the statement ``import spam`` results in the following call:
33 ``__import__('spam',`` ``globals(),`` ``locals(), [], -1)``; the statement
34 ``from spam.ham import eggs`` results in ``__import__('spam.ham', globals(),
35 locals(), ['eggs'], -1)``. Note that even though ``locals()`` and ``['eggs']``
36 are passed in as arguments, the :func:`__import__` function does not set the
37 local variable named ``eggs``; this is done by subsequent code that is generated
38 for the import statement. (In fact, the standard implementation does not use
39 its *locals* argument at all, and uses its *globals* only to determine the
40 package context of the :keyword:`import` statement.)
41
42 When the *name* variable is of the form ``package.module``, normally, the
43 top-level package (the name up till the first dot) is returned, *not* the
44 module named by *name*. However, when a non-empty *fromlist* argument is
45 given, the module named by *name* is returned. This is done for
46 compatibility with the bytecode generated for the different kinds of import
47 statement; when using ``import spam.ham.eggs``, the top-level package
48 :mod:`spam` must be placed in the importing namespace, but when using ``from
49 spam.ham import eggs``, the ``spam.ham`` subpackage must be used to find the
50 ``eggs`` variable. As a workaround for this behavior, use :func:`getattr` to
51 extract the desired components. For example, you could define the following
52 helper::
53
54 def my_import(name):
55 mod = __import__(name)
56 components = name.split('.')
57 for comp in components[1:]:
58 mod = getattr(mod, comp)
59 return mod
60
61 *level* specifies whether to use absolute or relative imports. The default is
62 ``-1`` which indicates both absolute and relative imports will be attempted.
63 ``0`` means only perform absolute imports. Positive values for *level* indicate
64 the number of parent directories to search relative to the directory of the
65 module calling :func:`__import__`.
66
67 .. versionchanged:: 2.5
68 The level parameter was added.
69
70 .. versionchanged:: 2.5
71 Keyword support for parameters was added.
72
73
74.. function:: abs(x)
75
76 Return the absolute value of a number. The argument may be a plain or long
77 integer or a floating point number. If the argument is a complex number, its
78 magnitude is returned.
79
80
81.. function:: all(iterable)
82
83 Return True if all elements of the *iterable* are true. Equivalent to::
84
85 def all(iterable):
86 for element in iterable:
87 if not element:
88 return False
89 return True
90
91 .. versionadded:: 2.5
92
93
94.. function:: any(iterable)
95
96 Return True if any element of the *iterable* is true. Equivalent to::
97
98 def any(iterable):
99 for element in iterable:
100 if element:
101 return True
102 return False
103
104 .. versionadded:: 2.5
105
106
107.. function:: basestring()
108
109 This abstract type is the superclass for :class:`str` and :class:`unicode`. It
110 cannot be called or instantiated, but it can be used to test whether an object
111 is an instance of :class:`str` or :class:`unicode`. ``isinstance(obj,
112 basestring)`` is equivalent to ``isinstance(obj, (str, unicode))``.
113
114 .. versionadded:: 2.3
115
116
117.. function:: bool([x])
118
119 Convert a value to a Boolean, using the standard truth testing procedure. If
120 *x* is false or omitted, this returns :const:`False`; otherwise it returns
121 :const:`True`. :class:`bool` is also a class, which is a subclass of
122 :class:`int`. Class :class:`bool` cannot be subclassed further. Its only
123 instances are :const:`False` and :const:`True`.
124
125 .. index:: pair: Boolean; type
126
127 .. versionadded:: 2.2.1
128
129 .. versionchanged:: 2.3
130 If no argument is given, this function returns :const:`False`.
131
132
133.. function:: callable(object)
134
135 Return :const:`True` if the *object* argument appears callable,
136 :const:`False` if not. If this
137 returns true, it is still possible that a call fails, but if it is false,
138 calling *object* will never succeed. Note that classes are callable (calling a
139 class returns a new instance); class instances are callable if they have a
140 :meth:`__call__` method.
141
142
143.. function:: chr(i)
144
145 Return a string of one character whose ASCII code is the integer *i*. For
146 example, ``chr(97)`` returns the string ``'a'``. This is the inverse of
147 :func:`ord`. The argument must be in the range [0..255], inclusive;
148 :exc:`ValueError` will be raised if *i* is outside that range. See
149 also :func:`unichr`.
150
151
152.. function:: classmethod(function)
153
154 Return a class method for *function*.
155
156 A class method receives the class as implicit first argument, just like an
157 instance method receives the instance. To declare a class method, use this
158 idiom::
159
160 class C:
161 @classmethod
162 def f(cls, arg1, arg2, ...): ...
163
164 The ``@classmethod`` form is a function decorator -- see the description of
165 function definitions in :ref:`function` for details.
166
167 It can be called either on the class (such as ``C.f()``) or on an instance (such
168 as ``C().f()``). The instance is ignored except for its class. If a class
169 method is called for a derived class, the derived class object is passed as the
170 implied first argument.
171
172 Class methods are different than C++ or Java static methods. If you want those,
173 see :func:`staticmethod` in this section.
174
175 For more information on class methods, consult the documentation on the standard
176 type hierarchy in :ref:`types`.
177
178 .. versionadded:: 2.2
179
180 .. versionchanged:: 2.4
181 Function decorator syntax added.
182
183
184.. function:: cmp(x, y)
185
186 Compare the two objects *x* and *y* and return an integer according to the
187 outcome. The return value is negative if ``x < y``, zero if ``x == y`` and
188 strictly positive if ``x > y``.
189
190
191.. function:: compile(source, filename, mode[, flags[, dont_inherit]])
192
193 Compile the *source* into a code object. Code objects can be executed by an
194 :keyword:`exec` statement or evaluated by a call to :func:`eval`. The
195 *filename* argument should give the file from which the code was read; pass some
196 recognizable value if it wasn't read from a file (``'<string>'`` is commonly
197 used). The *mode* argument specifies what kind of code must be compiled; it can
198 be ``'exec'`` if *source* consists of a sequence of statements, ``'eval'`` if it
199 consists of a single expression, or ``'single'`` if it consists of a single
200 interactive statement (in the latter case, expression statements that evaluate
201 to something else than ``None`` will be printed).
202
203 When compiling multi-line statements, two caveats apply: line endings must be
204 represented by a single newline character (``'\n'``), and the input must be
205 terminated by at least one newline character. If line endings are represented
206 by ``'\r\n'``, use the string :meth:`replace` method to change them into
207 ``'\n'``.
208
209 The optional arguments *flags* and *dont_inherit* (which are new in Python 2.2)
210 control which future statements (see :pep:`236`) affect the compilation of
211 *source*. If neither is present (or both are zero) the code is compiled with
212 those future statements that are in effect in the code that is calling compile.
213 If the *flags* argument is given and *dont_inherit* is not (or is zero) then the
214 future statements specified by the *flags* argument are used in addition to
215 those that would be used anyway. If *dont_inherit* is a non-zero integer then
216 the *flags* argument is it -- the future statements in effect around the call to
217 compile are ignored.
218
219 Future statements are specified by bits which can be bitwise or-ed together to
220 specify multiple statements. The bitfield required to specify a given feature
221 can be found as the :attr:`compiler_flag` attribute on the :class:`_Feature`
222 instance in the :mod:`__future__` module.
223
224
225.. function:: complex([real[, imag]])
226
227 Create a complex number with the value *real* + *imag*\*j or convert a string or
228 number to a complex number. If the first parameter is a string, it will be
229 interpreted as a complex number and the function must be called without a second
230 parameter. The second parameter can never be a string. Each argument may be any
231 numeric type (including complex). If *imag* is omitted, it defaults to zero and
232 the function serves as a numeric conversion function like :func:`int`,
233 :func:`long` and :func:`float`. If both arguments are omitted, returns ``0j``.
234
235 The complex type is described in :ref:`typesnumeric`.
236
237
238.. function:: delattr(object, name)
239
240 This is a relative of :func:`setattr`. The arguments are an object and a
241 string. The string must be the name of one of the object's attributes. The
242 function deletes the named attribute, provided the object allows it. For
243 example, ``delattr(x, 'foobar')`` is equivalent to ``del x.foobar``.
244
245
246.. function:: dict([arg])
247 :noindex:
248
249 Create a new data dictionary, optionally with items taken from *arg*.
250 The dictionary type is described in :ref:`typesmapping`.
251
252 For other containers see the built in :class:`list`, :class:`set`, and
253 :class:`tuple` classes, and the :mod:`collections` module.
254
255
256.. function:: dir([object])
257
258 Without arguments, return the list of names in the current local scope. With an
259 argument, attempt to return a list of valid attributes for that object.
260
261 If the object has a method named :meth:`__dir__`, this method will be called and
262 must return the list of attributes. This allows objects that implement a custom
263 :func:`__getattr__` or :func:`__getattribute__` function to customize the way
264 :func:`dir` reports their attributes.
265
266 If the object does not provide :meth:`__dir__`, the function tries its best to
267 gather information from the object's :attr:`__dict__` attribute, if defined, and
268 from its type object. The resulting list is not necessarily complete, and may
269 be inaccurate when the object has a custom :func:`__getattr__`.
270
271 The default :func:`dir` mechanism behaves differently with different types of
272 objects, as it attempts to produce the most relevant, rather than complete,
273 information:
274
275 * If the object is a module object, the list contains the names of the module's
276 attributes.
277
278 * If the object is a type or class object, the list contains the names of its
279 attributes, and recursively of the attributes of its bases.
280
281 * Otherwise, the list contains the object's attributes' names, the names of its
282 class's attributes, and recursively of the attributes of its class's base
283 classes.
284
285 The resulting list is sorted alphabetically. For example::
286
287 >>> import struct
288 >>> dir()
289 ['__builtins__', '__doc__', '__name__', 'struct']
290 >>> dir(struct)
291 ['__doc__', '__name__', 'calcsize', 'error', 'pack', 'unpack']
292 >>> class Foo(object):
293 ... def __dir__(self):
294 ... return ["kan", "ga", "roo"]
295 ...
296 >>> f = Foo()
297 >>> dir(f)
298 ['ga', 'kan', 'roo']
299
300 .. note::
301
302 Because :func:`dir` is supplied primarily as a convenience for use at an
303 interactive prompt, it tries to supply an interesting set of names more than it
304 tries to supply a rigorously or consistently defined set of names, and its
305 detailed behavior may change across releases.
306
307
308.. function:: divmod(a, b)
309
310 Take two (non complex) numbers as arguments and return a pair of numbers
311 consisting of their quotient and remainder when using long division. With mixed
312 operand types, the rules for binary arithmetic operators apply. For plain and
313 long integers, the result is the same as ``(a // b, a % b)``. For floating point
314 numbers the result is ``(q, a % b)``, where *q* is usually ``math.floor(a / b)``
315 but may be 1 less than that. In any case ``q * b + a % b`` is very close to
316 *a*, if ``a % b`` is non-zero it has the same sign as *b*, and ``0 <= abs(a % b)
317 < abs(b)``.
318
319 .. versionchanged:: 2.3
320 Using :func:`divmod` with complex numbers is deprecated.
321
322
323.. function:: enumerate(iterable)
324
325 Return an enumerate object. *iterable* must be a sequence, an iterator, or some
326 other object which supports iteration. The :meth:`next` method of the iterator
327 returned by :func:`enumerate` returns a tuple containing a count (from zero) and
328 the corresponding value obtained from iterating over *iterable*.
329 :func:`enumerate` is useful for obtaining an indexed series: ``(0, seq[0])``,
330 ``(1, seq[1])``, ``(2, seq[2])``, .... For example::
331
332 >>> for i, season in enumerate(['Spring', 'Summer', 'Fall', 'Winter')]:
333 >>> print i, season
334 0 Spring
335 1 Summer
336 2 Fall
337 3 Winter
338
339 .. versionadded:: 2.3
340
341
342.. function:: eval(expression[, globals[, locals]])
343
344 The arguments are a string and optional globals and locals. If provided,
345 *globals* must be a dictionary. If provided, *locals* can be any mapping
346 object.
347
348 .. versionchanged:: 2.4
349 formerly *locals* was required to be a dictionary.
350
351 The *expression* argument is parsed and evaluated as a Python expression
352 (technically speaking, a condition list) using the *globals* and *locals*
353 dictionaries as global and local name space. If the *globals* dictionary is
354 present and lacks '__builtins__', the current globals are copied into *globals*
355 before *expression* is parsed. This means that *expression* normally has full
356 access to the standard :mod:`__builtin__` module and restricted environments are
357 propagated. If the *locals* dictionary is omitted it defaults to the *globals*
358 dictionary. If both dictionaries are omitted, the expression is executed in the
359 environment where :keyword:`eval` is called. The return value is the result of
360 the evaluated expression. Syntax errors are reported as exceptions. Example::
361
362 >>> x = 1
363 >>> print eval('x+1')
364 2
365
366 This function can also be used to execute arbitrary code objects (such as those
367 created by :func:`compile`). In this case pass a code object instead of a
368 string. The code object must have been compiled passing ``'eval'`` as the
369 *kind* argument.
370
371 Hints: dynamic execution of statements is supported by the :keyword:`exec`
372 statement. Execution of statements from a file is supported by the
373 :func:`execfile` function. The :func:`globals` and :func:`locals` functions
374 returns the current global and local dictionary, respectively, which may be
375 useful to pass around for use by :func:`eval` or :func:`execfile`.
376
377
378.. function:: execfile(filename[, globals[, locals]])
379
380 This function is similar to the :keyword:`exec` statement, but parses a file
381 instead of a string. It is different from the :keyword:`import` statement in
382 that it does not use the module administration --- it reads the file
383 unconditionally and does not create a new module. [#]_
384
385 The arguments are a file name and two optional dictionaries. The file is parsed
386 and evaluated as a sequence of Python statements (similarly to a module) using
387 the *globals* and *locals* dictionaries as global and local namespace. If
388 provided, *locals* can be any mapping object.
389
390 .. versionchanged:: 2.4
391 formerly *locals* was required to be a dictionary.
392
393 If the *locals* dictionary is omitted it defaults to the *globals* dictionary.
394 If both dictionaries are omitted, the expression is executed in the environment
395 where :func:`execfile` is called. The return value is ``None``.
396
397 .. warning::
398
399 The default *locals* act as described for function :func:`locals` below:
400 modifications to the default *locals* dictionary should not be attempted. Pass
401 an explicit *locals* dictionary if you need to see effects of the code on
402 *locals* after function :func:`execfile` returns. :func:`execfile` cannot be
403 used reliably to modify a function's locals.
404
405
406.. function:: file(filename[, mode[, bufsize]])
407
408 Constructor function for the :class:`file` type, described further in section
409 :ref:`bltin-file-objects`. The constructor's arguments are the same as those
410 of the :func:`open` built-in function described below.
411
412 When opening a file, it's preferable to use :func:`open` instead of invoking
413 this constructor directly. :class:`file` is more suited to type testing (for
414 example, writing ``isinstance(f, file)``).
415
416 .. versionadded:: 2.2
417
418
419.. function:: filter(function, iterable)
420
421 Construct a list from those elements of *iterable* for which *function* returns
422 true. *iterable* may be either a sequence, a container which supports
423 iteration, or an iterator, If *iterable* is a string or a tuple, the result
424 also has that type; otherwise it is always a list. If *function* is ``None``,
425 the identity function is assumed, that is, all elements of *iterable* that are
426 false are removed.
427
428 Note that ``filter(function, iterable)`` is equivalent to ``[item for item in
429 iterable if function(item)]`` if function is not ``None`` and ``[item for item
430 in iterable if item]`` if function is ``None``.
431
432
433.. function:: float([x])
434
435 Convert a string or a number to floating point. If the argument is a string, it
436 must contain a possibly signed decimal or floating point number, possibly
437 embedded in whitespace. Otherwise, the argument may be a plain or long integer
438 or a floating point number, and a floating point number with the same value
439 (within Python's floating point precision) is returned. If no argument is
440 given, returns ``0.0``.
441
442 .. note::
443
444 .. index::
445 single: NaN
446 single: Infinity
447
448 When passing in a string, values for NaN and Infinity may be returned, depending
449 on the underlying C library. The specific set of strings accepted which cause
450 these values to be returned depends entirely on the C library and is known to
451 vary.
452
453 The float type is described in :ref:`typesnumeric`.
454
455.. function:: frozenset([iterable])
456 :noindex:
457
458 Return a frozenset object, optionally with elements taken from *iterable*.
459 The frozenset type is described in :ref:`types-set`.
460
461 For other containers see the built in :class:`dict`, :class:`list`, and
462 :class:`tuple` classes, and the :mod:`collections` module.
463
464 .. versionadded:: 2.4
465
466
467.. function:: getattr(object, name[, default])
468
469 Return the value of the named attributed of *object*. *name* must be a string.
470 If the string is the name of one of the object's attributes, the result is the
471 value of that attribute. For example, ``getattr(x, 'foobar')`` is equivalent to
472 ``x.foobar``. If the named attribute does not exist, *default* is returned if
473 provided, otherwise :exc:`AttributeError` is raised.
474
475
476.. function:: globals()
477
478 Return a dictionary representing the current global symbol table. This is always
479 the dictionary of the current module (inside a function or method, this is the
480 module where it is defined, not the module from which it is called).
481
482
483.. function:: hasattr(object, name)
484
485 The arguments are an object and a string. The result is ``True`` if the string
486 is the name of one of the object's attributes, ``False`` if not. (This is
487 implemented by calling ``getattr(object, name)`` and seeing whether it raises an
488 exception or not.)
489
490
491.. function:: hash(object)
492
493 Return the hash value of the object (if it has one). Hash values are integers.
494 They are used to quickly compare dictionary keys during a dictionary lookup.
495 Numeric values that compare equal have the same hash value (even if they are of
496 different types, as is the case for 1 and 1.0).
497
498
499.. function:: help([object])
500
501 Invoke the built-in help system. (This function is intended for interactive
502 use.) If no argument is given, the interactive help system starts on the
503 interpreter console. If the argument is a string, then the string is looked up
504 as the name of a module, function, class, method, keyword, or documentation
505 topic, and a help page is printed on the console. If the argument is any other
506 kind of object, a help page on the object is generated.
507
508 .. versionadded:: 2.2
509
510
511.. function:: hex(x)
512
513 Convert an integer number (of any size) to a hexadecimal string. The result is a
514 valid Python expression.
515
516 .. versionchanged:: 2.4
517 Formerly only returned an unsigned literal.
518
519
520.. function:: id(object)
521
522 Return the "identity" of an object. This is an integer (or long integer) which
523 is guaranteed to be unique and constant for this object during its lifetime.
524 Two objects with non-overlapping lifetimes may have the same :func:`id` value.
525 (Implementation note: this is the address of the object.)
526
527
528.. function:: input([prompt])
529
530 Equivalent to ``eval(raw_input(prompt))``.
531
532 .. warning::
533
534 This function is not safe from user errors! It expects a valid Python
535 expression as input; if the input is not syntactically valid, a
536 :exc:`SyntaxError` will be raised. Other exceptions may be raised if there is an
537 error during evaluation. (On the other hand, sometimes this is exactly what you
538 need when writing a quick script for expert use.)
539
540 If the :mod:`readline` module was loaded, then :func:`input` will use it to
541 provide elaborate line editing and history features.
542
543 Consider using the :func:`raw_input` function for general input from users.
544
545
546.. function:: int([x[, radix]])
547
Georg Brandle4186252007-09-24 17:59:28 +0000548 Convert a string or number to a plain integer. If the argument is a string,
549 it must contain a possibly signed decimal number representable as a Python
550 integer, possibly embedded in whitespace. The *radix* parameter gives the
551 base for the conversion (which is 10 by default) and may be any integer in
552 the range [2, 36], or zero. If *radix* is zero, the proper radix is guessed
553 based on the contents of string; the interpretation is the same as for
554 integer literals. If *radix* is specified and *x* is not a string,
555 :exc:`TypeError` is raised. Otherwise, the argument may be a plain or long
556 integer or a floating point number. Conversion of floating point numbers to
557 integers truncates (towards zero). If the argument is outside the integer
558 range a long object will be returned instead. If no arguments are given,
559 returns ``0``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000560
561 The integer type is described in :ref:`typesnumeric`.
562
563
564.. function:: isinstance(object, classinfo)
565
566 Return true if the *object* argument is an instance of the *classinfo* argument,
567 or of a (direct or indirect) subclass thereof. Also return true if *classinfo*
568 is a type object (new-style class) and *object* is an object of that type or of
569 a (direct or indirect) subclass thereof. If *object* is not a class instance or
570 an object of the given type, the function always returns false. If *classinfo*
571 is neither a class object nor a type object, it may be a tuple of class or type
572 objects, or may recursively contain other such tuples (other sequence types are
573 not accepted). If *classinfo* is not a class, type, or tuple of classes, types,
574 and such tuples, a :exc:`TypeError` exception is raised.
575
576 .. versionchanged:: 2.2
577 Support for a tuple of type information was added.
578
579
580.. function:: issubclass(class, classinfo)
581
582 Return true if *class* is a subclass (direct or indirect) of *classinfo*. A
583 class is considered a subclass of itself. *classinfo* may be a tuple of class
584 objects, in which case every entry in *classinfo* will be checked. In any other
585 case, a :exc:`TypeError` exception is raised.
586
587 .. versionchanged:: 2.3
588 Support for a tuple of type information was added.
589
590
591.. function:: iter(o[, sentinel])
592
593 Return an iterator object. The first argument is interpreted very differently
594 depending on the presence of the second argument. Without a second argument, *o*
595 must be a collection object which supports the iteration protocol (the
596 :meth:`__iter__` method), or it must support the sequence protocol (the
597 :meth:`__getitem__` method with integer arguments starting at ``0``). If it
598 does not support either of those protocols, :exc:`TypeError` is raised. If the
599 second argument, *sentinel*, is given, then *o* must be a callable object. The
600 iterator created in this case will call *o* with no arguments for each call to
601 its :meth:`next` method; if the value returned is equal to *sentinel*,
602 :exc:`StopIteration` will be raised, otherwise the value will be returned.
603
604 .. versionadded:: 2.2
605
606
607.. function:: len(s)
608
609 Return the length (the number of items) of an object. The argument may be a
610 sequence (string, tuple or list) or a mapping (dictionary).
611
612
613.. function:: list([iterable])
614
615 Return a list whose items are the same and in the same order as *iterable*'s
616 items. *iterable* may be either a sequence, a container that supports
617 iteration, or an iterator object. If *iterable* is already a list, a copy is
618 made and returned, similar to ``iterable[:]``. For instance, ``list('abc')``
619 returns ``['a', 'b', 'c']`` and ``list( (1, 2, 3) )`` returns ``[1, 2, 3]``. If
620 no argument is given, returns a new empty list, ``[]``.
621
622 :class:`list` is a mutable sequence type, as documented in
623 :ref:`typesseq`. For other containers see the built in :class:`dict`,
624 :class:`set`, and :class:`tuple` classes, and the :mod:`collections` module.
625
626
627.. function:: locals()
628
629 Update and return a dictionary representing the current local symbol table.
630
631 .. warning::
632
633 The contents of this dictionary should not be modified; changes may not affect
634 the values of local variables used by the interpreter.
635
636 Free variables are returned by *locals* when it is called in a function block.
637 Modifications of free variables may not affect the values used by the
638 interpreter. Free variables are not returned in class blocks.
639
640
641.. function:: long([x[, radix]])
642
643 Convert a string or number to a long integer. If the argument is a string, it
644 must contain a possibly signed number of arbitrary size, possibly embedded in
645 whitespace. The *radix* argument is interpreted in the same way as for
646 :func:`int`, and may only be given when *x* is a string. Otherwise, the argument
647 may be a plain or long integer or a floating point number, and a long integer
648 with the same value is returned. Conversion of floating point numbers to
649 integers truncates (towards zero). If no arguments are given, returns ``0L``.
650
651 The long type is described in :ref:`typesnumeric`.
652
653.. function:: map(function, iterable, ...)
654
655 Apply *function* to every item of *iterable* and return a list of the results.
656 If additional *iterable* arguments are passed, *function* must take that many
657 arguments and is applied to the items from all iterables in parallel. If one
658 iterable is shorter than another it is assumed to be extended with ``None``
659 items. If *function* is ``None``, the identity function is assumed; if there
660 are multiple arguments, :func:`map` returns a list consisting of tuples
661 containing the corresponding items from all iterables (a kind of transpose
662 operation). The *iterable* arguments may be a sequence or any iterable object;
663 the result is always a list.
664
665
666.. function:: max(iterable[, args...][key])
667
668 With a single argument *iterable*, return the largest item of a non-empty
669 iterable (such as a string, tuple or list). With more than one argument, return
670 the largest of the arguments.
671
672 The optional *key* argument specifies a one-argument ordering function like that
673 used for :meth:`list.sort`. The *key* argument, if supplied, must be in keyword
674 form (for example, ``max(a,b,c,key=func)``).
675
676 .. versionchanged:: 2.5
677 Added support for the optional *key* argument.
678
679
680.. function:: min(iterable[, args...][key])
681
682 With a single argument *iterable*, return the smallest item of a non-empty
683 iterable (such as a string, tuple or list). With more than one argument, return
684 the smallest of the arguments.
685
686 The optional *key* argument specifies a one-argument ordering function like that
687 used for :meth:`list.sort`. The *key* argument, if supplied, must be in keyword
688 form (for example, ``min(a,b,c,key=func)``).
689
690 .. versionchanged:: 2.5
691 Added support for the optional *key* argument.
692
693
694.. function:: object()
695
696 Return a new featureless object. :class:`object` is a base for all new style
697 classes. It has the methods that are common to all instances of new style
698 classes.
699
700 .. versionadded:: 2.2
701
702 .. versionchanged:: 2.3
703 This function does not accept any arguments. Formerly, it accepted arguments but
704 ignored them.
705
706
707.. function:: oct(x)
708
709 Convert an integer number (of any size) to an octal string. The result is a
710 valid Python expression.
711
712 .. versionchanged:: 2.4
713 Formerly only returned an unsigned literal.
714
715
716.. function:: open(filename[, mode[, bufsize]])
717
718 Open a file, returning an object of the :class:`file` type described in
719 section :ref:`bltin-file-objects`. If the file cannot be opened,
720 :exc:`IOError` is raised. When opening a file, it's preferable to use
721 :func:`open` instead of invoking the :class:`file` constructor directly.
722
723 The first two arguments are the same as for ``stdio``'s :cfunc:`fopen`:
724 *filename* is the file name to be opened, and *mode* is a string indicating how
725 the file is to be opened.
726
727 The most commonly-used values of *mode* are ``'r'`` for reading, ``'w'`` for
728 writing (truncating the file if it already exists), and ``'a'`` for appending
729 (which on *some* Unix systems means that *all* writes append to the end of the
730 file regardless of the current seek position). If *mode* is omitted, it
731 defaults to ``'r'``. When opening a binary file, you should append ``'b'`` to
732 the *mode* value to open the file in binary mode, which will improve
733 portability. (Appending ``'b'`` is useful even on systems that don't treat
734 binary and text files differently, where it serves as documentation.) See below
735 for more possible values of *mode*.
736
737 .. index::
738 single: line-buffered I/O
739 single: unbuffered I/O
740 single: buffer size, I/O
741 single: I/O control; buffering
742
743 The optional *bufsize* argument specifies the file's desired buffer size: 0
744 means unbuffered, 1 means line buffered, any other positive value means use a
745 buffer of (approximately) that size. A negative *bufsize* means to use the
746 system default, which is usually line buffered for tty devices and fully
747 buffered for other files. If omitted, the system default is used. [#]_
748
749 Modes ``'r+'``, ``'w+'`` and ``'a+'`` open the file for updating (note that
750 ``'w+'`` truncates the file). Append ``'b'`` to the mode to open the file in
751 binary mode, on systems that differentiate between binary and text files; on
752 systems that don't have this distinction, adding the ``'b'`` has no effect.
753
754 In addition to the standard :cfunc:`fopen` values *mode* may be ``'U'`` or
755 ``'rU'``. Python is usually built with universal newline support; supplying
756 ``'U'`` opens the file as a text file, but lines may be terminated by any of the
757 following: the Unix end-of-line convention ``'\n'``, the Macintosh convention
758 ``'\r'``, or the Windows convention ``'\r\n'``. All of these external
759 representations are seen as ``'\n'`` by the Python program. If Python is built
760 without universal newline support a *mode* with ``'U'`` is the same as normal
761 text mode. Note that file objects so opened also have an attribute called
762 :attr:`newlines` which has a value of ``None`` (if no newlines have yet been
763 seen), ``'\n'``, ``'\r'``, ``'\r\n'``, or a tuple containing all the newline
764 types seen.
765
766 Python enforces that the mode, after stripping ``'U'``, begins with ``'r'``,
767 ``'w'`` or ``'a'``.
768
Mark Summerfieldddca9f02007-09-13 14:54:30 +0000769 See also the :mod:`fileinput` module, the :mod:`os` module, and the
770 :mod:`os.path` module.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000771
772 .. versionchanged:: 2.5
773 Restriction on first letter of mode string introduced.
774
775
776.. function:: ord(c)
777
778 Given a string of length one, return an integer representing the Unicode code
779 point of the character when the argument is a unicode object, or the value of
780 the byte when the argument is an 8-bit string. For example, ``ord('a')`` returns
781 the integer ``97``, ``ord(u'\u2020')`` returns ``8224``. This is the inverse of
782 :func:`chr` for 8-bit strings and of :func:`unichr` for unicode objects. If a
783 unicode argument is given and Python was built with UCS2 Unicode, then the
784 character's code point must be in the range [0..65535] inclusive; otherwise the
785 string length is two, and a :exc:`TypeError` will be raised.
786
787
788.. function:: pow(x, y[, z])
789
790 Return *x* to the power *y*; if *z* is present, return *x* to the power *y*,
791 modulo *z* (computed more efficiently than ``pow(x, y) % z``). The two-argument
792 form ``pow(x, y)`` is equivalent to using the power operator: ``x**y``.
793
794 The arguments must have numeric types. With mixed operand types, the coercion
795 rules for binary arithmetic operators apply. For int and long int operands, the
796 result has the same type as the operands (after coercion) unless the second
797 argument is negative; in that case, all arguments are converted to float and a
798 float result is delivered. For example, ``10**2`` returns ``100``, but
799 ``10**-2`` returns ``0.01``. (This last feature was added in Python 2.2. In
800 Python 2.1 and before, if both arguments were of integer types and the second
801 argument was negative, an exception was raised.) If the second argument is
802 negative, the third argument must be omitted. If *z* is present, *x* and *y*
803 must be of integer types, and *y* must be non-negative. (This restriction was
804 added in Python 2.2. In Python 2.1 and before, floating 3-argument ``pow()``
805 returned platform-dependent results depending on floating-point rounding
806 accidents.)
807
808
809.. function:: property([fget[, fset[, fdel[, doc]]]])
810
811 Return a property attribute for new-style classes (classes that derive from
812 :class:`object`).
813
814 *fget* is a function for getting an attribute value, likewise *fset* is a
815 function for setting, and *fdel* a function for del'ing, an attribute. Typical
816 use is to define a managed attribute x::
817
818 class C(object):
819 def __init__(self): self._x = None
820 def getx(self): return self._x
821 def setx(self, value): self._x = value
822 def delx(self): del self._x
823 x = property(getx, setx, delx, "I'm the 'x' property.")
824
825 If given, *doc* will be the docstring of the property attribute. Otherwise, the
826 property will copy *fget*'s docstring (if it exists). This makes it possible to
827 create read-only properties easily using :func:`property` as a decorator::
828
829 class Parrot(object):
830 def __init__(self):
831 self._voltage = 100000
832
833 @property
834 def voltage(self):
835 """Get the current voltage."""
836 return self._voltage
837
838 turns the :meth:`voltage` method into a "getter" for a read-only attribute with
839 the same name.
840
841 .. versionadded:: 2.2
842
843 .. versionchanged:: 2.5
844 Use *fget*'s docstring if no *doc* given.
845
846
847.. function:: range([start,] stop[, step])
848
849 This is a versatile function to create lists containing arithmetic progressions.
850 It is most often used in :keyword:`for` loops. The arguments must be plain
851 integers. If the *step* argument is omitted, it defaults to ``1``. If the
852 *start* argument is omitted, it defaults to ``0``. The full form returns a list
853 of plain integers ``[start, start + step, start + 2 * step, ...]``. If *step*
854 is positive, the last element is the largest ``start + i * step`` less than
855 *stop*; if *step* is negative, the last element is the smallest ``start + i *
856 step`` greater than *stop*. *step* must not be zero (or else :exc:`ValueError`
857 is raised). Example::
858
859 >>> range(10)
860 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
861 >>> range(1, 11)
862 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
863 >>> range(0, 30, 5)
864 [0, 5, 10, 15, 20, 25]
865 >>> range(0, 10, 3)
866 [0, 3, 6, 9]
867 >>> range(0, -10, -1)
868 [0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
869 >>> range(0)
870 []
871 >>> range(1, 0)
872 []
873
874
875.. function:: raw_input([prompt])
876
877 If the *prompt* argument is present, it is written to standard output without a
878 trailing newline. The function then reads a line from input, converts it to a
879 string (stripping a trailing newline), and returns that. When EOF is read,
880 :exc:`EOFError` is raised. Example::
881
882 >>> s = raw_input('--> ')
883 --> Monty Python's Flying Circus
884 >>> s
885 "Monty Python's Flying Circus"
886
887 If the :mod:`readline` module was loaded, then :func:`raw_input` will use it to
888 provide elaborate line editing and history features.
889
890
891.. function:: reduce(function, iterable[, initializer])
892
893 Apply *function* of two arguments cumulatively to the items of *iterable*, from
894 left to right, so as to reduce the iterable to a single value. For example,
895 ``reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])`` calculates ``((((1+2)+3)+4)+5)``.
896 The left argument, *x*, is the accumulated value and the right argument, *y*, is
897 the update value from the *iterable*. If the optional *initializer* is present,
898 it is placed before the items of the iterable in the calculation, and serves as
899 a default when the iterable is empty. If *initializer* is not given and
900 *iterable* contains only one item, the first item is returned.
901
902
903.. function:: reload(module)
904
905 Reload a previously imported *module*. The argument must be a module object, so
906 it must have been successfully imported before. This is useful if you have
907 edited the module source file using an external editor and want to try out the
908 new version without leaving the Python interpreter. The return value is the
909 module object (the same as the *module* argument).
910
911 When ``reload(module)`` is executed:
912
913 * Python modules' code is recompiled and the module-level code reexecuted,
914 defining a new set of objects which are bound to names in the module's
915 dictionary. The ``init`` function of extension modules is not called a second
916 time.
917
918 * As with all other objects in Python the old objects are only reclaimed after
919 their reference counts drop to zero.
920
921 * The names in the module namespace are updated to point to any new or changed
922 objects.
923
924 * Other references to the old objects (such as names external to the module) are
925 not rebound to refer to the new objects and must be updated in each namespace
926 where they occur if that is desired.
927
928 There are a number of other caveats:
929
930 If a module is syntactically correct but its initialization fails, the first
931 :keyword:`import` statement for it does not bind its name locally, but does
932 store a (partially initialized) module object in ``sys.modules``. To reload the
933 module you must first :keyword:`import` it again (this will bind the name to the
934 partially initialized module object) before you can :func:`reload` it.
935
936 When a module is reloaded, its dictionary (containing the module's global
937 variables) is retained. Redefinitions of names will override the old
938 definitions, so this is generally not a problem. If the new version of a module
939 does not define a name that was defined by the old version, the old definition
940 remains. This feature can be used to the module's advantage if it maintains a
941 global table or cache of objects --- with a :keyword:`try` statement it can test
942 for the table's presence and skip its initialization if desired::
943
944 try:
945 cache
946 except NameError:
947 cache = {}
948
949 It is legal though generally not very useful to reload built-in or dynamically
950 loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:`__builtin__`.
951 In many cases, however, extension modules are not designed to be initialized
952 more than once, and may fail in arbitrary ways when reloaded.
953
954 If a module imports objects from another module using :keyword:`from` ...
955 :keyword:`import` ..., calling :func:`reload` for the other module does not
956 redefine the objects imported from it --- one way around this is to re-execute
957 the :keyword:`from` statement, another is to use :keyword:`import` and qualified
958 names (*module*.*name*) instead.
959
960 If a module instantiates instances of a class, reloading the module that defines
961 the class does not affect the method definitions of the instances --- they
962 continue to use the old class definition. The same is true for derived classes.
963
964
965.. function:: repr(object)
966
967 Return a string containing a printable representation of an object. This is the
968 same value yielded by conversions (reverse quotes). It is sometimes useful to be
969 able to access this operation as an ordinary function. For many types, this
970 function makes an attempt to return a string that would yield an object with the
971 same value when passed to :func:`eval`.
972
973
974.. function:: reversed(seq)
975
976 Return a reverse iterator. *seq* must be an object which supports the sequence
977 protocol (the :meth:`__len__` method and the :meth:`__getitem__` method with
978 integer arguments starting at ``0``).
979
980 .. versionadded:: 2.4
981
982
983.. function:: round(x[, n])
984
985 Return the floating point value *x* rounded to *n* digits after the decimal
986 point. If *n* is omitted, it defaults to zero. The result is a floating point
987 number. Values are rounded to the closest multiple of 10 to the power minus
988 *n*; if two multiples are equally close, rounding is done away from 0 (so. for
989 example, ``round(0.5)`` is ``1.0`` and ``round(-0.5)`` is ``-1.0``).
990
991
992.. function:: set([iterable])
993 :noindex:
994
995 Return a new set, optionally with elements are taken from *iterable*.
996 The set type is described in :ref:`types-set`.
997
998 For other containers see the built in :class:`dict`, :class:`list`, and
999 :class:`tuple` classes, and the :mod:`collections` module.
1000
1001 .. versionadded:: 2.4
1002
1003
1004.. function:: setattr(object, name, value)
1005
1006 This is the counterpart of :func:`getattr`. The arguments are an object, a
1007 string and an arbitrary value. The string may name an existing attribute or a
1008 new attribute. The function assigns the value to the attribute, provided the
1009 object allows it. For example, ``setattr(x, 'foobar', 123)`` is equivalent to
1010 ``x.foobar = 123``.
1011
1012
1013.. function:: slice([start,] stop[, step])
1014
1015 .. index:: single: Numerical Python
1016
1017 Return a slice object representing the set of indices specified by
1018 ``range(start, stop, step)``. The *start* and *step* arguments default to
1019 ``None``. Slice objects have read-only data attributes :attr:`start`,
1020 :attr:`stop` and :attr:`step` which merely return the argument values (or their
1021 default). They have no other explicit functionality; however they are used by
1022 Numerical Python and other third party extensions. Slice objects are also
1023 generated when extended indexing syntax is used. For example:
1024 ``a[start:stop:step]`` or ``a[start:stop, i]``.
1025
1026
1027.. function:: sorted(iterable[, cmp[, key[, reverse]]])
1028
1029 Return a new sorted list from the items in *iterable*.
1030
1031 The optional arguments *cmp*, *key*, and *reverse* have the same meaning as
1032 those for the :meth:`list.sort` method (described in section
1033 :ref:`typesseq-mutable`).
1034
1035 *cmp* specifies a custom comparison function of two arguments (iterable
1036 elements) which should return a negative, zero or positive number depending on
1037 whether the first argument is considered smaller than, equal to, or larger than
1038 the second argument: ``cmp=lambda x,y: cmp(x.lower(), y.lower())``
1039
1040 *key* specifies a function of one argument that is used to extract a comparison
1041 key from each list element: ``key=str.lower``
1042
1043 *reverse* is a boolean value. If set to ``True``, then the list elements are
1044 sorted as if each comparison were reversed.
1045
1046 In general, the *key* and *reverse* conversion processes are much faster than
1047 specifying an equivalent *cmp* function. This is because *cmp* is called
1048 multiple times for each list element while *key* and *reverse* touch each
1049 element only once.
1050
1051 .. versionadded:: 2.4
1052
1053
1054.. function:: staticmethod(function)
1055
1056 Return a static method for *function*.
1057
1058 A static method does not receive an implicit first argument. To declare a static
1059 method, use this idiom::
1060
1061 class C:
1062 @staticmethod
1063 def f(arg1, arg2, ...): ...
1064
1065 The ``@staticmethod`` form is a function decorator -- see the description of
1066 function definitions in :ref:`function` for details.
1067
1068 It can be called either on the class (such as ``C.f()``) or on an instance (such
1069 as ``C().f()``). The instance is ignored except for its class.
1070
1071 Static methods in Python are similar to those found in Java or C++. For a more
1072 advanced concept, see :func:`classmethod` in this section.
1073
1074 For more information on static methods, consult the documentation on the
1075 standard type hierarchy in :ref:`types`.
1076
1077 .. versionadded:: 2.2
1078
1079 .. versionchanged:: 2.4
1080 Function decorator syntax added.
1081
1082
1083.. function:: str([object])
1084
1085 Return a string containing a nicely printable representation of an object. For
1086 strings, this returns the string itself. The difference with ``repr(object)``
1087 is that ``str(object)`` does not always attempt to return a string that is
1088 acceptable to :func:`eval`; its goal is to return a printable string. If no
1089 argument is given, returns the empty string, ``''``.
1090
1091 For more information on strings see :ref:`typesseq` which describes sequence
1092 functionality (strings are sequences), and also the string-specific methods
1093 described in the :ref:`string-methods` section. To output formatted strings
1094 use template strings or the ``%`` operator described in the
1095 :ref:`string-formatting` section. In addition see the :ref:`stringservices`
1096 section. See also :func:`unicode`.
1097
1098
1099.. function:: sum(iterable[, start])
1100
1101 Sums *start* and the items of an *iterable* from left to right and returns the
1102 total. *start* defaults to ``0``. The *iterable*'s items are normally numbers,
1103 and are not allowed to be strings. The fast, correct way to concatenate a
1104 sequence of strings is by calling ``''.join(sequence)``. Note that
1105 ``sum(range(n), m)`` is equivalent to ``reduce(operator.add, range(n), m)``
1106
1107 .. versionadded:: 2.3
1108
1109
1110.. function:: super(type[, object-or-type])
1111
1112 Return the superclass of *type*. If the second argument is omitted the super
1113 object returned is unbound. If the second argument is an object,
1114 ``isinstance(obj, type)`` must be true. If the second argument is a type,
1115 ``issubclass(type2, type)`` must be true. :func:`super` only works for new-style
1116 classes.
1117
1118 A typical use for calling a cooperative superclass method is::
1119
1120 class C(B):
1121 def meth(self, arg):
1122 super(C, self).meth(arg)
1123
1124 Note that :func:`super` is implemented as part of the binding process for
1125 explicit dotted attribute lookups such as ``super(C, self).__getitem__(name)``.
1126 Accordingly, :func:`super` is undefined for implicit lookups using statements or
1127 operators such as ``super(C, self)[name]``.
1128
1129 .. versionadded:: 2.2
1130
1131
1132.. function:: tuple([iterable])
1133
1134 Return a tuple whose items are the same and in the same order as *iterable*'s
1135 items. *iterable* may be a sequence, a container that supports iteration, or an
1136 iterator object. If *iterable* is already a tuple, it is returned unchanged.
1137 For instance, ``tuple('abc')`` returns ``('a', 'b', 'c')`` and ``tuple([1, 2,
1138 3])`` returns ``(1, 2, 3)``. If no argument is given, returns a new empty
1139 tuple, ``()``.
1140
1141 :class:`tuple` is an immutable sequence type, as documented in
1142 :ref:`typesseq`. For other containers see the built in :class:`dict`,
1143 :class:`list`, and :class:`set` classes, and the :mod:`collections` module.
1144
1145
1146.. function:: type(object)
1147
1148 .. index:: object: type
1149
1150 Return the type of an *object*. The return value is a type object. The
1151 :func:`isinstance` built-in function is recommended for testing the type of an
1152 object.
1153
1154 With three arguments, :func:`type` functions as a constructor as detailed below.
1155
1156
1157.. function:: type(name, bases, dict)
1158 :noindex:
1159
1160 Return a new type object. This is essentially a dynamic form of the
1161 :keyword:`class` statement. The *name* string is the class name and becomes the
1162 :attr:`__name__` attribute; the *bases* tuple itemizes the base classes and
1163 becomes the :attr:`__bases__` attribute; and the *dict* dictionary is the
1164 namespace containing definitions for class body and becomes the :attr:`__dict__`
1165 attribute. For example, the following two statements create identical
1166 :class:`type` objects::
1167
1168 >>> class X(object):
1169 ... a = 1
1170 ...
1171 >>> X = type('X', (object,), dict(a=1))
1172
1173 .. versionadded:: 2.2
1174
1175
1176.. function:: unichr(i)
1177
1178 Return the Unicode string of one character whose Unicode code is the integer
1179 *i*. For example, ``unichr(97)`` returns the string ``u'a'``. This is the
1180 inverse of :func:`ord` for Unicode strings. The valid range for the argument
1181 depends how Python was configured -- it may be either UCS2 [0..0xFFFF] or UCS4
1182 [0..0x10FFFF]. :exc:`ValueError` is raised otherwise. For ASCII and 8-bit
1183 strings see :func:`chr`.
1184
1185 .. versionadded:: 2.0
1186
1187
1188.. function:: unicode([object[, encoding [, errors]]])
1189
1190 Return the Unicode string version of *object* using one of the following modes:
1191
1192 If *encoding* and/or *errors* are given, ``unicode()`` will decode the object
1193 which can either be an 8-bit string or a character buffer using the codec for
1194 *encoding*. The *encoding* parameter is a string giving the name of an encoding;
1195 if the encoding is not known, :exc:`LookupError` is raised. Error handling is
1196 done according to *errors*; this specifies the treatment of characters which are
1197 invalid in the input encoding. If *errors* is ``'strict'`` (the default), a
1198 :exc:`ValueError` is raised on errors, while a value of ``'ignore'`` causes
1199 errors to be silently ignored, and a value of ``'replace'`` causes the official
1200 Unicode replacement character, ``U+FFFD``, to be used to replace input
1201 characters which cannot be decoded. See also the :mod:`codecs` module.
1202
1203 If no optional parameters are given, ``unicode()`` will mimic the behaviour of
1204 ``str()`` except that it returns Unicode strings instead of 8-bit strings. More
1205 precisely, if *object* is a Unicode string or subclass it will return that
1206 Unicode string without any additional decoding applied.
1207
1208 For objects which provide a :meth:`__unicode__` method, it will call this method
1209 without arguments to create a Unicode string. For all other objects, the 8-bit
1210 string version or representation is requested and then converted to a Unicode
1211 string using the codec for the default encoding in ``'strict'`` mode.
1212
1213 For more information on Unicode strings see :ref:`typesseq` which describes
1214 sequence functionality (Unicode strings are sequences), and also the
1215 string-specific methods described in the :ref:`string-methods` section. To
1216 output formatted strings use template strings or the ``%`` operator described
1217 in the :ref:`string-formatting` section. In addition see the
1218 :ref:`stringservices` section. See also :func:`str`.
1219
1220 .. versionadded:: 2.0
1221
1222 .. versionchanged:: 2.2
1223 Support for :meth:`__unicode__` added.
1224
1225
1226.. function:: vars([object])
1227
1228 Without arguments, return a dictionary corresponding to the current local symbol
1229 table. With a module, class or class instance object as argument (or anything
1230 else that has a :attr:`__dict__` attribute), returns a dictionary corresponding
1231 to the object's symbol table. The returned dictionary should not be modified:
1232 the effects on the corresponding symbol table are undefined. [#]_
1233
1234
1235.. function:: xrange([start,] stop[, step])
1236
1237 This function is very similar to :func:`range`, but returns an "xrange object"
1238 instead of a list. This is an opaque sequence type which yields the same values
1239 as the corresponding list, without actually storing them all simultaneously.
1240 The advantage of :func:`xrange` over :func:`range` is minimal (since
1241 :func:`xrange` still has to create the values when asked for them) except when a
1242 very large range is used on a memory-starved machine or when all of the range's
1243 elements are never used (such as when the loop is usually terminated with
1244 :keyword:`break`).
1245
1246 .. note::
1247
1248 :func:`xrange` is intended to be simple and fast. Implementations may impose
1249 restrictions to achieve this. The C implementation of Python restricts all
1250 arguments to native C longs ("short" Python integers), and also requires that
1251 the number of elements fit in a native C long.
1252
1253
1254.. function:: zip([iterable, ...])
1255
1256 This function returns a list of tuples, where the *i*-th tuple contains the
1257 *i*-th element from each of the argument sequences or iterables. The returned
1258 list is truncated in length to the length of the shortest argument sequence.
1259 When there are multiple arguments which are all of the same length, :func:`zip`
1260 is similar to :func:`map` with an initial argument of ``None``. With a single
1261 sequence argument, it returns a list of 1-tuples. With no arguments, it returns
1262 an empty list.
1263
1264 .. versionadded:: 2.0
1265
1266 .. versionchanged:: 2.4
1267 Formerly, :func:`zip` required at least one argument and ``zip()`` raised a
1268 :exc:`TypeError` instead of returning an empty list.
1269
1270.. % ---------------------------------------------------------------------------
1271
1272
1273.. _non-essential-built-in-funcs:
1274
1275Non-essential Built-in Functions
1276================================
1277
1278There are several built-in functions that are no longer essential to learn, know
1279or use in modern Python programming. They have been kept here to maintain
1280backwards compatibility with programs written for older versions of Python.
1281
1282Python programmers, trainers, students and bookwriters should feel free to
1283bypass these functions without concerns about missing something important.
1284
1285
1286.. function:: apply(function, args[, keywords])
1287
1288 The *function* argument must be a callable object (a user-defined or built-in
1289 function or method, or a class object) and the *args* argument must be a
1290 sequence. The *function* is called with *args* as the argument list; the number
1291 of arguments is the length of the tuple. If the optional *keywords* argument is
1292 present, it must be a dictionary whose keys are strings. It specifies keyword
1293 arguments to be added to the end of the argument list. Calling :func:`apply` is
1294 different from just calling ``function(args)``, since in that case there is
1295 always exactly one argument. The use of :func:`apply` is equivalent to
1296 ``function(*args, **keywords)``. Use of :func:`apply` is not necessary since the
1297 "extended call syntax," as used in the last example, is completely equivalent.
1298
1299 .. deprecated:: 2.3
1300 Use the extended call syntax instead, as described above.
1301
1302
1303.. function:: buffer(object[, offset[, size]])
1304
1305 The *object* argument must be an object that supports the buffer call interface
1306 (such as strings, arrays, and buffers). A new buffer object will be created
1307 which references the *object* argument. The buffer object will be a slice from
1308 the beginning of *object* (or from the specified *offset*). The slice will
1309 extend to the end of *object* (or will have a length given by the *size*
1310 argument).
1311
1312
1313.. function:: coerce(x, y)
1314
1315 Return a tuple consisting of the two numeric arguments converted to a common
1316 type, using the same rules as used by arithmetic operations. If coercion is not
1317 possible, raise :exc:`TypeError`.
1318
1319
1320.. function:: intern(string)
1321
1322 Enter *string* in the table of "interned" strings and return the interned string
1323 -- which is *string* itself or a copy. Interning strings is useful to gain a
1324 little performance on dictionary lookup -- if the keys in a dictionary are
1325 interned, and the lookup key is interned, the key comparisons (after hashing)
1326 can be done by a pointer compare instead of a string compare. Normally, the
1327 names used in Python programs are automatically interned, and the dictionaries
1328 used to hold module, class or instance attributes have interned keys.
1329
1330 .. versionchanged:: 2.3
1331 Interned strings are not immortal (like they used to be in Python 2.2 and
1332 before); you must keep a reference to the return value of :func:`intern` around
1333 to benefit from it.
1334
1335.. rubric:: Footnotes
1336
1337.. [#] It is used relatively rarely so does not warrant being made into a statement.
1338
1339.. [#] Specifying a buffer size currently has no effect on systems that don't have
1340 :cfunc:`setvbuf`. The interface to specify the buffer size is not done using a
1341 method that calls :cfunc:`setvbuf`, because that may dump core when called after
1342 any I/O has been performed, and there's no reliable way to determine whether
1343 this is the case.
1344
1345.. [#] In the current implementation, local variable bindings cannot normally be
1346 affected this way, but variables retrieved from other scopes (such as modules)
1347 can be. This may change.
1348