Style chooser: Modern, Modern B&W, Classic, High contrast or Printing
[Hint: Use styles Modern B&W or Printing to print. If you get problems, try printing the PDF versions instead]

Contents

Front matter

Version 2.4
Check updates at http://rgruet.free.fr/#QuickRef.
Please report errors, inaccuracies and suggestions to Richard Gruet (pqr at rgruet.net).

Creative Commons License Creative Commons License.

Last modified on May 8, 2007
17 Feb 2005,
upgraded by Richard Gruet for Python 2.4
03 Oct 2003,
upgraded by Richard Gruet for Python 2.3
11 May 2003, rev 4
upgraded by Richard Gruet for Python 2.2 (restyled by Andrei)
7 Aug 2001
upgraded by Simon Brunning for Python 2.1
16 May 2001
upgraded by Richard Gruet and Simon Brunning for Python 2.0
18 Jun 2000
upgraded by Richard Gruet for Python 1.5.2
30 Oct 1995
created by Chris Hoffmann for Python 1.3
Color coding:
Features added in 2.4 since 2.3.
Features added in 2.3 since 2.2.
Features added in 2.2 since 2.1.
Originally based on:
Useful links :
Tip: From within the Python interpreter, type help, help(object) or help("name") to get help.

Invocation Options

python[w] [-dEhimOQStuUvVWxX?] [-c command | scriptFile | - ] [args]
    (pythonw does not open a terminal/console; python does)
Invocation Options
Option Effect
-d Output parser debugging information (also PYTHONDEBUG=x)
-E Ignore environment variables (such as PYTHONPATH)
-h Print a help message and exit (formerly -?)
-i Inspect interactively after running script (also PYTHONINSPECT=x) and force prompts, even if stdin appears not to be a terminal.
-m module Search for module on sys.path and runs the module as a script.
-O Optimize generated bytecode (also PYTHONOPTIMIZE=x). Asserts are suppressed.
-OO Remove doc-strings in addition to the -O optimizations.
-Q arg Division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew
-S Don't perform import site on initialization.
-t Issue warnings about inconsistent tab usage (-tt: issue errors).
-u Unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x).
-U Force Python to interpret all string literals as Unicode literals.
-v Verbose (trace import statements) (also PYTHONVERBOSE=x).
-V Print the Python version number and exit.
-W arg Warning control (arg is action:message:category:module:lineno)
-x Skip first line of source, allowing use of non-unix Forms of #!cmd
-X Disable class based built-in exceptions (for backward compatibility management of exceptions)
-c command Specify the command to execute (see next section). This terminates the option list (following options are passed as arguments to the command).
scriptFile The name of a python file (.py) to execute. Read from stdin.
- Program read from stdin (default; interactive mode if a tty).
args Passed to script or command (in sys.argv[1:])
  If no scriptFile or command, Python enters interactive mode.
  • Available IDEs in std distrib: IDLE (tkinter based, portable), Pythonwin (on Windows). Other free IDEs: IPython (enhanced interactive Python shell), ERIC, SPE, BOA constructor.
  • Typical python module header :
    #!/usr/bin/env python
    # -*- coding: latin1 -*-
    Since 2.3 the encoding of a Python source file must be declared as one of the two first lines (or defaults to 7 bits Ascii) [PEP-0263], with the format:
    # -*- coding: encoding -*-
    Std encodings are defined here, e.g. ISO-8859-1 (aka latin1), iso-8859-15 (latin9), UTF-8... Not all encodings supported, in particular UTF-16 is not supported.
  • Site customization: File sitecustomize.py is automatically loaded by Python if it exists in the Python path (ideally located in ${PYTHONHOME}/lib/site-packages/).
  • Tip: when launching a Python script on Windows,
    <pythonHome>\python myScript.py args ... can be reduced to :
    myScript.py args ... if <pythonHome> is in the PATH envt variable, and further reduced to :
    myScript args ... provided that .py;.pyw;.pyc;.pyo is added to the PATHEXT envt variable.

Environment variables

Environment variables
Variable Effect
PYTHONHOME Alternate prefix directory (or prefix;exec_prefix). The default module search path uses prefix/lib
PYTHONPATH Augments the default search path for module files. The format is the same as the shell's $PATH: one or more directory pathnames separated by ':' or ';' without spaces around (semi-) colons !
On Windows Python first searches for Registry key HKEY_LOCAL_MACHINE\Software\Python\PythonCore\x.y\PythonPath (default value). You can create a key named after your application with a default string value giving the root directory path of your appl.

Alternatively, you can create a text file with a .pth extension, containing the path(s), one per line, and put the file somewhere in the Python search path (ideally in the site-packages/ directory). It's better to create a .pth for each application, to make easy to uninstall them.
PYTHONSTARTUP If this is the name of a readable file, the Python commands in that file are executed before the first prompt is displayed in interactive mode (no default).
PYTHONDEBUG If non-empty, same as -d option
PYTHONINSPECT If non-empty, same as -i option
PYTHONOPTIMIZE If non-empty, same as -O option
PYTHONUNBUFFERED If non-empty, same as -u option
PYTHONVERBOSE If non-empty, same as -v option
PYTHONCASEOK If non-empty, ignore case in file/module names (imports)

Notable lexical entities

Keywords

        and       del       for       is        raise
assert elif from lambda return
break else global not try
class except if or while
continue exec import pass yield
def finally in print
  • (List of keywords available in std module: keyword)
  • Illegitimate Tokens (only valid in strings): $ ? (plus @ before 2.4)
  • A statement must all be on a single line. To break a statement over multiple lines, use "\", as with the C preprocessor.
    Exception: can always break when inside any (), [], or {} pair, or in triple-quoted strings.
  • More than one statement can appear on a line if they are separated with semicolons (";").
  • Comments start with "#" and continue to end of line.

Identifiers

(letter | "_") (letter | digit | "_")*
  • Python identifiers keywords, attributes, etc. are case-sensitive.
  • Special forms: _ident (not imported by 'from module import *'); __ident__ (system defined name); __ident (class-private name mangling).

String literals

2 flavors: str (8 bits/char plain old strings) and unicode (16 bits/char UCS2 strings).

Literal
"a string enclosed by double quotes"
'another string delimited by single quotes and with a " inside'
'''a string containing embedded newlines and quote (') marks, can be delimited with triple quotes.'''
""" may also use 3- double quotes as delimiters """
u'a unicode string'
U"Another unicode string"
r'a raw string where \ are kept (literalized): handy for regular expressions and windows paths!'
R"another raw string"   -- raw strings cannot end with a \
ur'a unicode raw string'
UR"another raw unicode"
  • Use \ at end of line to continue a string on next line.
  • Adjacent strings are concatened, e.g. 'Monty ' 'Python' is the same as 'Monty Python'.
  • u'hello' + ' world'  --> u'hello world'   (coerced to unicode)

String Literal Escapes
Escape Meaning
\newline Ignored (escape newline)
\\ Backslash (\)
\e Escape (ESC)
\v Vertical Tab (VT)
\' Single quote (')
\f Formfeed (FF)
\ooo char with octal value ooo
\" Double quote (")
\n Linefeed (LF)
\a Bell (BEL)
\r Carriage Return (CR)
\xhh char with hex value hh
\b Backspace (BS)
\t Horizontal Tab (TAB)
\uxxxx Character with 16-bit hex value xxxx (unicode only)
\Uxxxxxxxx Character with 32-bit hex value xxxxxxxx (unicode only)
\N{name} Character named in the Unicode database (unicode only), e.g. u'\N{Greek Small Letter Pi}' <=> u'\u03c0'.
(Conversely, in module unicodedata, unicodedata.name(u'\u03c0') == 'GREEK SMALL LETTER PI')
\AnyOtherChar left as-is, including the backslash, e.g. str('\z') == '\\z'
  • NUL byte (\000) is not an end-of-string marker; NULs may be embedded in strings.
  • Strings (and tuples) are immutable: they cannot be modified.

Boolean constants (since 2.2.1)

  • True
  • False

In 2.2.1, True and False are integers 1 and 0. Since 2.3, they are of new type bool.

Numbers

  • Decimal integer: 1234, 1234567890546378940L (or l)
  • Octal integer: 0177, 0177777777777777777L (begin with a 0)
  • Hex integer: 0xFF, 0XFFFFffffFFFFFFFFFFL (begin with 0x or 0X)
  • Long integer (unlimited precision): 1234567890123456L (ends with L or l) or long(1234)
  • Float (double precision): 3.14e-10, .001, 10., 1E3
  • Complex: 1J, 2+3J, 4+5j (ends with J or j, + separates (float) real and imaginary parts)

Integers and long integers are unified starting from release 2.2 (the L suffix is no longer required)

Sequences

  • Strings (types str and unicode) of length 0, 1, 2 (see above)
      '', '1', "12", 'hello\n'
  • Tuples (type tuple) of length 0, 1, 2, etc:
      () (1,) (1,2) # parentheses are optional if len > 0
  • Lists (type list) of length 0, 1, 2, etc:
      [] [1] [1,2]
  • Indexing is 0-based. Negative indices (usually) mean count backwards from end of sequence.
  • Sequence slicing [starting-at-index : but-less-than-index [ : step]]. Start defaults to 0, end to len(sequence), step to 1.
      a = (0,1,2,3,4,5,6,7)
    a[3] == 3
    a[-1] == 7
    a[2:4] == (2, 3)
    a[1:] == (1, 2, 3, 4, 5, 6, 7)
    a[:3] == (0, 1, 2)
    a[:] == (0,1,2,3,4,5,6,7) # makes a copy of the sequence.
    a[::2] == (0, 2, 4, 6) # Only even numbers.
    a[::-1] = (7, 6, 5, 4, 3 , 2, 1, 0) # Reverse order.

Dictionaries (Mappings)

Dictionaries (type dict) of length 0, 1, 2, etc: {} {1 : 'first'} {1 : 'first', 'two': 2, key:value}
Keys must be of a hashable type; Values can be any type.

Operators and their evaluation order

Operators and their evaluation order
Highest Operator Comment
  , [...] {...} `...` Tuple, list & dict. creation; string conv.
s[i] s[i:j] s.attr f(...) indexing & slicing; attributes, fct calls
+x, -x, ~x Unary operators
x**y Power
x*y x/y x%y mult, division, modulo
x+y x-y addition, substraction
x<<y   x>>y Bit shifting
x&y Bitwise and
x^y Bitwise exclusive or
x|y Bitwise or
x<y  x<=y  x>y  x>=y  x==y x!=y  x<>y
x is y   x is not y
x in s   x not in s
Comparison, 
identity, 
membership
not x boolean negation
x and y boolean and
x or y boolean or
Lowest lambda args: expr anonymous function
  • Alternate names are defined in module operator (e.g. __add__ and add for +)
  • Most operators are overridable

Basic types and their operations

Comparisons (defined between any types)

Comparisons
Comparison Meaning
Notes
< strictly less than
(1)
<= less than or equal to  
> strictly greater than  
>= greater than or equal to  
== equal to  
!= or <> not equal to  
is object identity
(2)
is not negated object identity
(2)
Notes:
  • Comparison behavior can be overridden for a given class by defining special method __cmp__.
  • (1) X < Y < Z < W has expected meaning, unlike C
  • (2) Compare object identities (i.e. id(object)), not object values.

None

  • None is used as default return value on functions. Built-in single object with type NoneType. Might become a keyword in the future.
  • Input that evaluates to None does not print when running Python interactively.
  • None is now a constant; trying to bind a value to the name "None" is now a syntax error.

Boolean operators

Boolean values and operators
Value or Operator Evaluates to
Notes
built-in bool(expr) True if expr is true, False otherwise.
None, numeric zeros, empty sequences and mappings considered False  
all other values considered True  
not x True if x is False, else False  
x or y if x is False then y, else x
(1)
x and y if x is False then x, else y
(1)
Notes:
  • Truth testing behavior can be overridden for a given class by defining special method __nonzero__.
  • (1) Evaluate second arg only if necessary to determine outcome.

Numeric types

Floats, integers, long integers, Decimals.

  • Floats (type float) are implemented with C doubles.
  • Integers (type int) are implemented with C longs (signed 32 bits, maximum value is sys.maxint)
  • Long integers (type long) have unlimited size (only limit is system resources).
  • Integers and long integers are unified starting from release 2.2 (the L suffix is no longer required). int() returns a long integer instead of raising OverflowError. Overflowing operations such as 2<<32 no longer trigger FutureWarning and return a long integer.
  • Since 2.4, new type Decimal introduced (see module: decimal) to compensate for some limitations of the floating point type, in particular with fractions. Unlike floats, decimal numbers can be represented exactly; exactness is preserved in calculations; precision is user settable via the Context type [PEP 327].

Operators on all numeric types

Operators on all numeric types
Operation Result
abs(x) the absolute value of x
int(x) x converted to integer
long(x) x converted to long integer
float(x) x converted to floating point
-x x negated
+x x unchanged
x + y the sum of x and y
x - y difference of x and y
x * y product of x and y
x / y true division of x by y: 1/2 -> 0.5 (1)
x // y floor division operator: 1//2 -> 0 (1)
x % y remainder of x / y
divmod(x, y) the tuple (x/y, x%y)
x ** y x to the power y (the same as pow(x,y))
Notes:
  • (1) / is still a floor division (1/2 == 0) unless validated by a from __future__ import division.
  • classes may override methods __truediv__ and __floordiv__ to redefine these operators.

Bit operators on integers and long integers

Bit operators
Operation Result
~x the bits of x inverted
x ^ y bitwise exclusive or of x and y
x & y bitwise and of x and y
x | y bitwise or of x and y
x << n x shifted left by n bits
x >> n x shifted right by n bits

Complex Numbers

  • Type complex, represented as a pair of machine-level double precision floating point numbers.
  • The real and imaginary value of a complex number z can be retrieved through the attributes z.real and z.imag.

Numeric exceptions

TypeError
raised on application of arithmetic operation to non-number
OverflowError
numeric bounds exceeded
ZeroDivisionError
raised when zero second argument of div or modulo op

Operations on all sequence types (lists, tuples, strings)

Operations on all sequence types
Operation Result
Notes
x in s True if an item of s is equal to x, else False
(3)
x not in s False if an item of s is equal to x, else True
(3)
s1 + s2 the concatenation of s1 and s2  
s * n, n*s n copies of s concatenated
 
s[i] i'th item of s, origin 0
(1)
s[i: j]
s[i: j:step]
Slice of s from i (included) to j(excluded). Optional step value, possibly negative (default: 1).
(1), (2)
len(s) Length of s  
min(s) Smallest item of s
 
max(s) Largest item of (s)
 
reversed(s) [2.4] Returns an iterator on s in reverse order. s must be a sequence, not an iterator (use reversed(list(s)) in this case. [PEP 322]
 
sorted(iterable [, cmp]
  [, cmp=cmpFct]
  [, key=keyGetter]
  [, reverse=bool])
[2.4] works like the new in-place list.sort(), but sorts a new list created from the iterable.
 
Notes:
  • (1) if i or j is negative, the index is relative to the end of the string, ie len(s)+i or len(s)+j is substituted. But note that -0 is still 0.
  • (2) The slice of s from i to j is defined as the sequence of items with index k such that i<= k < j.
    If i or j is greater than len(s), use len(s). If j is omitted, use len(s). If i is greater than or equal to j, the slice is empty.
  • (3) For strings: before 2.3, x must be a single character string; Since 2.3, x in s is True if x is a substring of s.

Operations on mutable sequences (type list)

Operations on mutable sequences
Operation Result
Notes
s[i] =x item i of s is replaced by x  
s[i:j [:step]] = t slice of s from i to j is replaced by t  
del s[i:j[:step]] same as s[i:j] = []  
s.append(x) same as s[len(s) : len(s)] = [x]  
s.extend(x) same as s[len(s):len(s)]= x
(5)
s.count(x) returns number of i's for which s[i] == x  
s.index(x[, start[, stop]]) returns smallest i such that s[i]==x. start and stop limit search to only part of the list.
(1)
s.insert(i, x) same as s[i:i] = [x] if i>= 0. i == -1 inserts before the last element.  
s.remove(x) same as del s[s.index(x)]
(1)
s.pop([i]) same as x = s[i]; del s[i]; return x
(4)
s.reverse() reverses the items of s in place
(3)
s.sort([cmp ])
s.sort([cmp=cmpFct]
  [, key=keyGetter]
  [, reverse=bool])
sorts the items of s in place
(2), (3)
Notes:
  • (1) Raises a ValueError exception when x is not found in s (i.e. out of range).
  • (2) The sort() method takes an optional argument cmp specifying a comparison function takings 2 list items and returning -1, 0, or 1 depending on whether the 1st argument is considered smaller than, equal to, or larger than the 2nd argument. Note that this slows the sorting process down considerably. Since 2.4, the cmp argument may be specified as a keyword, and 2 optional keywords args are added: key is a fct that takes a list item and returns the key to use in the comparison (faster than cmp); reverse: If True, reverse the sense of the comparison used.
    Since Python 2.3 (?), the sort is guaranteed "stable". This means that two entries with equal keys will be returned in the same order as they were input. For example, you can sort a list of people by name, and then sort the list by age, resulting in a list sorted by age where people with the same age are in name-sorted order.
  • (3) The sort() and reverse() methods modify the list in place for economy of space when sorting or reversing a large list. They don't return the sorted or reversed list to remind you of this side effect.
  • (4) The pop() method is not supported by mutable sequence types other than lists. The optional argument i defaults to -1, so that by default the last item is removed and returned.
  • (5) Raises a TypeError when x is not a list object.

Operations on mappings / dictionaries (type dict)

Operations on mappings
Operation Result
Notes
len(d) The number of items in d  
dict()
dict(**kwargs)
dict(iterable)
dict(d)
Creates an empty dictionary.
Creates a dictionary init with the keyword args kwargs.
Creates a dictionary init with (key, value) pairs provided by iterable.
Creates a dictionary which is a copy of dictionary d.
 
d.fromkeys(iterable, value=None) Class method to create a dictionary with keys provided by iterator, and all values set to value.  
d[k] The item of d with key k
(1)
d[k] = x Set d[k] to x  
del d[k] Removes d[k] from d
(1)
d.clear() Removes all items from d  
d.copy() A shallow copy of d  
d.has_key(k)
k in d
True if d has key k, else False  
d.items() A copy of d's list of (key, item) pairs
(2)
d.keys() A copy of d's list of keys
(2)
d1.update(d2) for k, v in d2.items(): d1[k] = v
Since 2.4, update(**kwargs) and update(iterable) may also be used.
d.values() A copy of d's list of values
(2)
d.get(k, defaultval) The item of d with key k
(3)
d.setdefault(k[,defaultval]) d[k] if k in d, else defaultval(also setting it)
(4)
d.iteritems() Returns an iterator over (key, value) pairs.  
d.iterkeys() Returns an iterator over the mapping's keys.  
d.itervalues() Returns an iterator over the mapping's values.  
d.pop(k[, default]) Removes key k and returns the corresponding value. If key is not found, default is returned if given, otherwise KeyError is raised.  
d.popitem() Removes and returns an arbitrary (key, value) pair from d
 
Notes:
  • TypeError is raised if key is not acceptable.
  • (1) KeyError is raised if key k is not in the map.
  • (2) Keys and values are listed in random order.
  • (3) Never raises an exception if k is not in the map, instead it returns defaultval. defaultval is optional, when not provided and k is not in the map, None is returned.
  • (4) Never raises an exception if k is not in the map, instead returns defaultVal, and adds k to map with value defaultVal. defaultVal is optional. When not provided and k is not in the map, None is returned and added to map.

Operations on strings (types str & unicode)

These string methods largely (but not completely) supersede the functions available in the string module.
The str and unicode types share a common base class basestring.
Operations on strings
Operation Result
Notes
s.capitalize() Returns a copy of s with only its first character capitalized.  
s.center(width) Returns a copy of s centered in a string of length width.
(1)
s.count(sub[ ,start[,end]]) Returns the number of occurrences of substring sub in string s.
(2)
s.decode([ encoding[,errors]]) Returns a unicode string representing the decoded version of str s, using the given codec (encoding). Useful when reading from a file or a I/O function that handles only str. Inverse of encode.
(3)
s.encode([ encoding[,errors]]) Returns a str representing an encoded version of s. Mostly used to encode a unicode string to a str in order to print it or write it to a file (since these I/O functions only accept str), e.g. u'légère'.encode('utf8'). Also used to encode a str to a str, e.g. to zip (codec 'zip') or uuencode (codec 'uu') it. Inverse of decode.
(3)
s.endswith(suffix [,start[,end]]) Returns True if s ends with the specified suffix, otherwise return false.
(2)
s.expandtabs([ tabsize]) Returns a copy of s where all tab characters are expanded using spaces.
(4)
s.find(sub[ ,start[,end]]) Returns the lowest index in s where substring sub is found. Returns -1 if sub is not found.
(2)
s.index(sub[ ,start[,end]]) like find(), but raises ValueError when the substring is not found.
(2)
s.isalnum() Returns True if all characters in s are alphanumeric, False otherwise.
(5)
s.isalpha() Returns True if all characters in s are alphabetic, False otherwise.
(5)
s.isdigit() Returns True if all characters in s are digit characters, False otherwise.
(5)
s.islower() Returns True if all characters in s are lowercase, False otherwise.
(6)
s.isspace() Returns True if all characters in s are whitespace characters, False otherwise.
(5)
s.istitle() Returns True if string s is a titlecased string, False otherwise.
(7)
s.isupper() Returns True if all characters in s are uppercase, False otherwise.
(6)
separator.join(seq) Returns a concatenation of the strings in the sequence seq, separated by string separator, e.g.: ",".join(['A', 'B', 'C']) -> "A,B,C"
 
s.ljust/rjust/center(width[, fillChar=' ']) Returns s left/right justified/centered in a string of length width.
(1), (8)
s.lower() Returns a copy of s converted to lowercase.
 
s.lstrip([chars] ) Returns a copy of s with leading chars (default: blank chars) removed.
 
s.replace(old, new[, maxCount =-1]) Returns a copy of s with the first maxCount (-1: unlimited) occurrences of substring old replaced by new.
(9)
s.rfind(sub[ , start[, end]]) Returns the highest index in s where substring sub is found. Returns -1 if sub is not found.
(2)
s.rindex(sub[ , start[, end]]) like rfind(), but raises ValueError when the substring is not found.
(2)
s.rstrip([chars]) Returns a copy of s with trailing chars(default: blank chars) removed, e.g. aPath.rstrip('/') will remove the trailing '/'from aPath if it exists
 
s.split([ separator[, maxsplit]]) Returns a list of the words in s, using separator as the delimiter string.
(10)
s.rsplit([ separator[, maxsplit]]) Same as split, but splits from the end of the string.
(10)
s.splitlines([ keepends]) Returns a list of the lines in s, breaking at line boundaries.
(11)
s.startswith(prefix [, start[, end]]) Returns True if s starts with the specified prefix, otherwise returns False. Negative numbers may be used for start and end
(2)
s.strip([chars]) Returns a copy of s with leading and trailing chars(default: blank chars) removed.
 
s.swapcase() Returns a copy of s with uppercase characters converted to lowercase and vice versa.
 
s.title() Returns a titlecased copy of s, i.e. words start with uppercase characters, all remaining cased characters are lowercase.
 
s.translate(table [, deletechars]) Returns a copy of s mapped through translation table table.
(12)
s.upper() Returns a copy of s converted to uppercase.
 
s.zfill(width) Returns the numeric string left filled with zeros in a string of length width.  
Notes:
  • (1) Padding is done using spaces or the given character.
  • (2) If optional argument start is supplied, substring s[start:] is processed. If optional arguments start and end are supplied, substring s[start:end] is processed.
  • (3) Default encoding is sys.getdefaultencoding(), can be changed via sys.setdefaultencoding(). Optional argument errors may be given to set a different error handling scheme. The default for errors is 'strict', meaning that encoding errors raise a ValueError. Other possible values are 'ignore' and 'replace'. See also module codecs.
  • (4) If optional argument tabsize is not given, a tab size of 8 characters is assumed.
  • (5) Returns False if string s does not contain at least one character.
  • (6) Returns False if string s does not contain at least one cased character.
  • (7) A titlecased string is a string in which uppercase characters may only follow uncased characters and lowercase characters only cased ones.
  • (8) s is returned if width is less than len(s).
  • (9) If the optional argument maxCount is given, only the first maxCount occurrences are replaced.
  • (10) If separator is not specified or None, any whitespace string is a separator. If maxsplit is given, at most maxsplit splits are done.
  • (11) Line breaks are not included in the resulting list unless keepends is given and true.
  • (12) table must be a string of length 256. All characters occurring in the optional argument deletechars are removed prior to translation.

String formatting with the % operator

formatString % args --> evaluates to a string
  • formatString mixes normal text with C printf format fields :
    %[flag][width][.precision] formatCode
    where formatCode is one of c, s, i, d, u, o, x, X, e, E, f, g, G, r, % (see table below).
  • The flag characters -, +, blank, # and 0 are understood (see table below).
  • Width and precision may be a * to specify that an integer argument gives the actual width or precision. Examples of width and precision :
    Examples
    Format string Result
    '%3d' % 2 ' 2'
    '%*d' % (3, 2) ' 2'
    '%-3d' % 2 '2 '
    '%03d' % 2 '002'
    '% d' % 2 ' 2'
    '%+d' % 2 '+2'
    '%+3d' % -2 ' -2'
    '%- 5d' % 2 ' 2 '
    '%.4f' % 2 '2.0000'
    '%.*f' % (4, 2) '2.0000'
    '%0*.*f' % (10, 4, 2) '00002.0000'
    '%10.4f' % 2 ' 2.0000'
    '%010.4f' % 2 '00002.0000'
  • %s will convert any type argument to string (uses str() function)
  • args may be a single arg or a tuple of args
    '%s has %03d quote types.' % ('Python', 2)  == 'Python has 002 quote types.'
  • Right-hand-side can also be a mapping:
    a = '%(lang)s has %(c)03d quote types.' % {'c':2, 'lang':'Python'}
    (vars() function very handy to use on right-hand-side)

Format codes
Code Meaning
d Signed integer decimal.
i Signed integer decimal.
o Unsigned octal.
u Unsigned decimal.
x Unsigned hexadecimal (lowercase).
X Unsigned hexadecimal (uppercase).
e Floating point exponential format (lowercase).
E Floating point exponential format (uppercase).
f Floating point decimal format.
F Floating point decimal format.
g Same as "e" if exponent is greater than -4 or less than precision, "f" otherwise.
G Same as "E" if exponent is greater than -4 or less than precision, "F" otherwise.
c Single character (accepts integer or single character string).
r String (converts any python object using repr()).
s String (converts any python object using str()).
% No argument is converted, results in a "%" character in the result. (The complete specification is %%.)
Conversion flag characters
Flag Meaning
# The value conversion will use the "alternate form".
0 The conversion will be zero padded.
- The converted value is left adjusted (overrides "-").
  (a space) A blank should be left before a positive number (or empty string) produced by a signed conversion.
+ A sign character ("+" or "-") will precede the conversion (overrides a "space" flag).

String templating

Since 2.4 [PEP 292] the string module provides a new mechanism to substitute variables into template strings.
Variables to be substituted begin with a $. Actual values are provided in a dictionary via the substitute or safe_substitute methods (substitute throws KeyError if a key is missing while safe_substitute ignores it) :

  t = string.Template('Hello $name, you won $$$amount') # (note $$ to literalize $)
  t.substitute({'name': 'Eric', 'amount': 100000}) # -> u'Hello Eric, you won $100000'

File objects

(Type file). Created with built-in functions open() [preferred] or its alias file(). May be created by other modules' functions as well.
Unicode file names are now supported for all functions accepting or returning file names (open, os.listdir, etc...).

Operators on file objects

File operations
Operation Result
f.close() Close file f.
f.fileno() Get fileno (fd) for file f.
f.flush() Flush file f's internal buffer.
f.isatty() 1 if file f is connected to a tty-like dev, else 0.
f.next() Returns the next input line of file f, or raises StopIteration when EOF is hit. Files are their own iterators. next is implicitely called by constructs like for line in f: print line.
f.read([size]) Read at most size bytes from file f and return as a string object. If size omitted, read to EOF.
f.readline() Read one entire line from file f. The returned line has a trailing \n, except possibly at EOF. Return '' on EOF.
f.readlines() Read until EOF with readline() and return a list of lines read.
f.xreadlines() Return a sequence-like object for reading a file line-by-line without reading the entire file into memory. From 2.2, use rather: for line in f (see below).
for line in f: do something... Iterate over the lines of a file (using readline)
f.seek(offset[, whence=0]) Set file f's position, like "stdio's fseek()".
whence == 0 then use absolute indexing.
whence == 1 then offset relative to current pos.
whence == 2 then offset relative to file end.
f.tell() Return file f's current position (byte offset).
f.truncate([size]) Truncate f's size. If size is present, f is truncated to (at most) that size, otherwise f is truncated at current position (which remains unchanged).
f.write(str) Write string to file f.
f.writelines(list) Write list of strings to file f. No EOL are added.

File Exceptions

EOFError
End-of-file hit when reading (may be raised many times, e.g. if f is a tty).
IOError
Other I/O-related I/O operation failure

Sets

Since 2.4, Python has 2 new built-in types with fast C implementations [PEP 218]: set and frozenset (immutable set). Sets are unordered collections of unique (non duplicate) elements. Elements must be hashable. frozensets are hashable (thus can be elements of other sets) while sets are not. All sets are iterable.

Since 2.3, the classes Set and ImmutableSet were available in the module sets.This module remains in the 2.4 std library in addition to the built-in types.
Main Set operations
Operation Result
set/frozenset([iterable=None]) [using built-in types] Builds a set or frozenset from the given iterable (default: empty), e.g. set([1,2,3]), set("hello").
Set/ImmutableSet([iterable=None]) [using the sets module] Builds a Set or ImmutableSet from the given iterable (default: empty), e.g. Set([1,2,3]).
len(s) Cardinality of set s.
elt in s / not in s True if element elt belongs / does not belong to set s.
for elt in s: process elt... Iterates on elements of set s.
s1.issubset(s2) True if every element in s1 is in s2.
s1.issuperset(s2) True if every element in s2 is in s1.
s.add(elt) Adds element elt to set s (if it doesn't already exist).
s.remove(elt) Removes element elt from set s. KeyError if element not found.
s.clear() Removes all elements from this set (not on immutable sets!).
s1.intersection(s2) or s1&s2 Returns a new Set with elements common to s1 and s2.
s1.union(s2) or s1|s2 Returns a new Set with elements from both s1 and s2.
s1.difference(s2) or s1-s2 Returns a new Set with elements in s1 but not in s2.
s1.symmetric_difference(s2) or s1^s2 Returns a new Set with elements in either s1 or s2 but not both.
s.copy() Returns a shallow copy of set s.
s.update(iterable) Adds all values from iterable to set s.

Date/Time

Python has no intrinsic Date and Time types, but provides 2 builtin modules :
  • time: time access and conversions
  • datetime: classes date, time, datetime, timedelta, tzinfo.

...see also the third-party module: mxDateTime.

Advanced Types

- See manuals for more details -
  • Module objects
  • Class objects
  • Class instance objects
  • Type objects (see module: types)
  • File objects (see above)
  • Slice objects
  • Ellipsis object, used by extended slice notation (unique, named Ellipsis)
  • Null object (unique, named None)
  • XRange objects
  • Callable types:
    • User-defined (written in Python):
      • User-defined Function objects
      • User-defined Method objects
    • Built-in (written in C):
      • Built-in Function objects
      • Built-in Method object
  • Internal Types:
    • Code objects (byte-compile executable Python code: bytecode)
    • Frame objects (execution frames)
    • Traceback objects (stack trace of an exception)

Statements


Statement Result
pass Null statement
del name[, name]* Unbind name(s) from object. Object will be indirectly (and automatically) deleted only if no longer referenced.
print[>> fileobject,] [s1 [, s2 ]* [,] Writes to sys.stdout, or to fileobject if supplied. Puts spaces between arguments. Puts newline at end unless statement ends with comma. Print is not required when running interactively, simply typing an expression will print its value, unless the value is None.
exec x [in globals [, locals]] Executes x in namespaces provided. Defaults to current namespaces. x can be a string, open file-like object or a function object. locals can be any mapping type, not only a regular Python dict. See also built-in function execfile.
callable(value,... [id=value] , [*args], [**kw]) Call function callable with parameters. Parameters can be passed by name or be omitted if function defines default values. E.g. if callable is defined as "def callable(p1=1, p2=2)"
"callable()" <=> "callable(1, 2)"
"callable(10)" <=> "callable(10, 2)"
"callable(p2=99)" <=> "callable(1, 99)"
*args is a tuple of positional arguments.
**kw is a dictionary of keyword arguments.

Assignment operators

Assignment operators
Operator Result
Notes
a = b Basic assignment - assign object b to label a
(1)(2)
a += b Roughly equivalent to a = a + b
(3)
a -= b Roughly equivalent to a = a - b
(3)
a *= b Roughly equivalent to a = a * b
(3)
a /= b Roughly equivalent to a = a / b
(3)
a //= b Roughly equivalent to a = a // b
(3)
a %= b Roughly equivalent to a = a % b
(3)
a **= b Roughly equivalent to a = a ** b
(3)
a &= b Roughly equivalent to a = a & b
(3)
a |= b Roughly equivalent to a = a | b
(3)
a ^= b Roughly equivalent to a = a ^ b
(3)
a >>= b Roughly equivalent to a = a >> b
(3)
a <<= b Roughly equivalent to a = a << b
(3)
Notes:
  • (1) Can unpack tuples, lists, and strings:
    first, second = l[0:2]    # equivalent to: first=l[0]; second=l[1]
    [f, s] = range(2)    # equivalent to: f=0; s=1
    c1,c2,c3 = 'abc'    # equivalent to: c1='a'; c2='b'; c3='c'
    (a, b), c, (d, e, f) = ['ab', 'c', 'def']    # equivalent to: a='a'; b='b'; c='c'; d='d'; e='e'; f='f'
    Tip: x,y = y,x swaps x and y.
  • (2) Multiple assignment possible:
    a = b = c = 0
    list1 = list2 = [1, 2, 3]    # list1 and list2 points to the same list (l1 is l2)
  • (3) Not exactly equivalent - a is evaluated only once. Also, where possible, operation performed in-place - a is modified rather than replaced.

Control Flow statements

Control flow statements
Statement Result
if condition:
  suite
[elif condition:   suite]*
[else:
  suite]
Usual if/else if/else statement
while condition:
  suite
[else:
  suite]
Usual while statement. The else suite is executed after loop exits, unless the loop is exited with break.
for element in sequence:
  suite
[else:
  suite]
Iterates over sequence, assigning each element to element. Use built-in range function to iterate a number of times. The else suite is executed at end unless loop exited with break.
break Immediately exits for or while loop.
continue Immediately does next iteration of for or while loop.
return [result] Exits from function (or method) and returns result (use a tuple to return more than one value). If no result given, then returns None.
yield expression (Only used within the body of a generator function, outside a try of a try..finally). "Returns" the evaluated expression.

Exception statements

Exception statements
Statement Result
assert expr[, message] expr is evaluated. if false, raises exception AssertionError with message. Before 2.3, inhibited if __debug__ is 0.
try:
  suite1
[except [exception [, value]:
  suite2]+
[else:
  suite3]
Statements in suite1 are executed. If an exception occurs, look in except clause(s) for matching exception. If matches or bare except, execute suite2 of that clause. If no exception happens, suite3 in else clause is executed after suite1. If exception has a value, it is put in variable value. exception can also be a tuple of exceptions, e.g. except(KeyError, NameError), e: print e.
try:
  suite1
finally:
  suite2
Statements in suite1 are executed. If no exception, execute suite2 (even if suite1 is exited with a return,break or continue statement). If exception did occur, executes suite2 and then immediately re-raises exception.
raise exceptionInstance Raises an instance of a class derived from Exception (preferred form of raise).
raise exceptionClass [, value [, traceback]] Raises exception of given class exceptionClass with optional value value. Arg traceback specifies a traceback object to use when printing the exception's backtrace.
raise A raise statement without arguments re-raises the last exception raised in the current function.
  • An exception is an instance of an exception class (before 2.0, it may also be a mere string).
  • Exception classes must be derived from the predefined class: Exception, e.g.:
    class TextException(Exception): pass
    try:
    if bad:
    raise TextException()
    except Exception:
    print 'Oops' # This will be printed because TextException is a subclass of Exception
  • When an error message is printed for an unhandled exception, the class name is printed, then a colon and a space, and finally the instance converted to a string using the built-in function str().
  • All built-in exception classes derives from StandardError, itself derived from Exception.

Name Space Statements

Imported module files must be located in a directory listed in the Python path (sys.path). Since 2.3, they may reside in a zip file [e.g. sys.path.insert(0, "aZipFile.zip")].

Packages (>1.5): a package is a name space which maps to a directory including module(s) and the special initialization module __init__.py (possibly empty).
Packages/directories can be nested. You address a module's symbol via [package.[package...].module.symbol.
[1.51: On Mac & Windows, the case of module file names must now match the case as used in the import statement]

Name space statements
Statement Result
import module1 [as name1] [, module2]* Imports modules. Members of module must be referred to by qualifying with [package.]module name, e.g.:
import sys; print sys.argv
import package1.subpackage.module
package1.subpackage.module.foo()
module1 renamed as name1, if supplied.
from module import name1 [as othername1][, name2]* Imports names from module module in current namespace.
from sys import argv; print argv
from package1 import module; module.foo()
from package1.module import foo; foo()
name1 renamed as othername1, if supplied.
[2.4] You can now put parentheses around the list of names in a from module import names statement (PEP 328).
from module import * Imports all names in module, except those starting with "_". Use sparsely, beware of name clashes!
from sys import *; print argv
from package.module import *; print x
Only legal at the top level of a module.
If module defines an __all__ attribute, only names listed in __all__ will be imported.

NB: "from package import *" only imports the symbols defined in the package's __init__.py file, not those in the package's modules !
global name1 [, name2] Names are from global scope (usually meaning from module) rather than local (usually meaning only in function).
E.g. in function without global statements, assuming "x" is name that hasn't been used in function or module so far:
- Try to read from "x" -> NameError
- Try to write to "x" -> creates "x" local to function
If "x" not defined in fct, but is in module, then: - Try to read from "x", gets value from module
- Try to write to "x", creates "x" local to fct
But note "x[0]=3" starts with search for "x", will use to global "x" if no local "x".

Function Definition

def funcName ([paramList]):
suite
Creates a function object and binds it to name funcName.
paramList ::= [param [, param]*]
param ::= value | id=value | *id | **id
  • Args are passed by value, so only args representing a mutable object can be modified (are inout parameters).
  • Use return to return (None) from the function, or return value to return value. Use a tuple to return more than one value, e.g. return 1,2,3
  • Keyword arguments arg=value specify a default value (evaluated at function def. time). They can only appear last in the param list, e.g. foo(x, y=1, s='')
  • Pseudo-arg *args captures a tuple of all remaining non-keyword args passed to the function, e.g. if def foo(x, *args): ... is called foo(1, 2, 3), then args will contain (2,3).
  • Pseudo-arg **kwargs captures a dictionary of all extra keyword arguments, e.g. if def foo(x, **kwargs): ... is called foo(1, y=2, z=3), then kwargs will contain {'y':2, 'z':3}. if def foo(x, *args, **kwargs): ... is called foo(1, 2, 3, y=4, z=5), then args will contain (2, 3), and kwargs will contain {'y':4, 'z':5}
  • args and kwargs are conventional names, but other names may be used as well.
  • *args and **kwargs can be "forwarded" (individually or together) to another function, e.g.
    def f1(x, *args, **kwargs):
      f2(*args, **kwargs)
  • See also Anonymous functions (lambdas).

Class Definition

class className [(super_class1[, super_class2]*)]:
  suite

Creates a class object and assigns it name className.
suite may contain local "defs" of class methods and assignments to class attributes.

Examples:

class MyClass (class1, class2): ...
  Creates a class object inheriting from both class1 and class2. Assigns new class object to name MyClass.

class MyClass: ...
  Creates a base class object (inheriting from nothing). Assigns new class object to name MyClass.

class MyClass (object): ...
  Creates a new-style class (inheriting from object makes a class a new-style class -available since Python 2.2-). Assigns new class object to name MyClass.

  • First arg to class instance methods (operations) is always the target instance object, called 'self' by convention.
  • Special static method __new__(cls[,...]) called when instance is created. 1st arg is a class, others are args to __init__(), more details here
  • Special method __init__() is called when instance is created.
  • Special method __del__() called when no more reference to object.
  • Create instance by "calling" class object, possibly with arg (thus instance=apply(aClassObject, args...) creates an instance!)
  • Before 2.2 it was not possible to subclass built-in classes like list, dict (you had to "wrap" them, using UserDict & UserList modules); since 2.2 you can subclass them directly (see Types/Classes unification).

Example:
class c (c_parent):
def __init__(self, name):
self.name = name
def print_name(self):
print "I'm", self.name
def call_parent(self):
c_parent.print_name(self)

instance = c('tom')
print instance.name
'tom'
instance.print_name()
"I'm tom"

Call parent's super class by accessing parent's method directly and passing self explicitly (see call_parent in example above).
Many other special methods available for implementing arithmetic operators, sequence, mapping indexing, etc...

Types / classes unification

Base types int, float, str, list, tuple, dict and file now (2.2) behave like classes derived from base class object, and may be subclassed:
x = int(2) # built-in cast function now a constructor for base type
y = 3 # <=> int(3) (litterals are instances of new base types)
print type(x), type(y) # int, int

assert isinstance(x, int) # replaces isinstance(x, types.IntType)

assert issubclass(int, object) # base types derive from base class 'object'.
s = "hello" # <=> str("hello")
assert isinstance(s, str)

f = 2.3 # <=> float(2.3)
class MyInt(int): pass # may subclass base types
x,y = MyInt(1), MyInt("2")

print x, y, x+y # => 1,2,3

class MyList(list): pass

l = MyList("hello")

print l # ['h', 'e', 'l', 'l', 'o']
New-style classes extends object. Old-style classes don't.

Documentation Strings

Modules, classes and functions may be documented by placing a string literal by itself as the first statement in the suite. The documentation can be retrieved by getting the '__doc__' attribute from the module, class or function.

Example:
class C:
"A description of C"
def __init__(self):
"A description of the constructor"
# etc.

c.__doc__ == "A description of C".
c.__init__.__doc__ == "A description of the constructor"

Iterators

  • An iterator enumerates elements of a collection. It is an object with a single method next() returning the next element or raising StopIteration.
  • You get an iterator on obj via the new built-in function iter(obj), which calls obj.__class__.__iter__().
  • A collection may be its own iterator by implementing both __iter__() and next().
  • Built-in collections (lists, tuples, strings, dict) implement __iter__(); dictionaries (maps) enumerate their keys; files enumerates their lines.
  • You can build a list or a tuple from an iterator, e.g. list(anIterator)
  • Python uses implicitely iterators wherever it has to loop :
    • for elt in collection:
    • if elt in collection:
    • when assigning tuples: x,y,z= collection

Generators

  • A generator is a function that retains its state between 2 calls and produces a new value at each invocation. The values are returned (one at a time) using the keyword yield, while return or raise StopIteration() are used to notify the end of values.
  • A typical use is the production of IDs, names, or serial numbers. Fancier applications like nanothreads are also possible.
  • To use a generator: call the generator function to get a generator object, then call generator.next() to get the next value until StopIteration is raised.
  • 2.4 introduces generator expressions [PEP 289] similar to list comprehensions, except that they create a generator that will return elements one by one, which is suitable for long sequences :
      linkGenerator = (link for link in get_all_links() if not link.followed)
      for link in linkGenerator:
        ...process link...

    Generator expressions must appear between parentheses.
  • In 2.2, feature needs to be enabled by the statement: from __future__ import generators (not required since 2.3+)

Example:
def genID(initialValue=0):
v = initialValue
while v < initialValue + 1000:
yield "ID_%05d" % v
v += 1
return # or: raise StopIteration()

generator = genID() # Create a generator
for i in range(10): # Generates 10 values
print generator.next()

Descriptors / Attribute access

  • Descriptors are objects implementing at least the first of these 3 methods representing the descriptor protocol:
    • __get__(self, obj, type=None) --> value
    • __set__(self, obj, value)
    • __delete__(self, obj)
    Python now transparently uses descriptors to describe and access the attributes and methods of new-style classes (i.e. derived from object). [more info])
  • Built-in descriptors now allow to define:
    • Static methods : Use staticmethod(f) to make method f(x) static (unbound).
    • Class methods: like a static but takes the Class as 1st argument => Use f = classmethod(f) to make method f(theClass, x) a class method.
    • Properties : A property is an instance of the new built-in type property, which implements the descriptor protocol for attributes => Use propertyName = property(fget=None, fset=None, fdel=None, doc=None) to define a property inside or outside a class. Then access it as propertyName or obj.propertyName
    • Slots. New style classes can define a class attribute __slots__ to constrain the list of assignable attribute names, to avoid typos (which is normally not detected by Python and leads to the creation of new attributes), e.g. __slots__ = ('x', 'y')
      Note: According to recent discussions, the real purpose of slots seems still unclear (optimization?), and their use should probably be discouraged.

Decorators for functions & methods

  • [PEP 318] A decorator D is noted @D on the line preceding the function/method it decorates :
        @D
        def f(): ...
    and is equivalent to:
        def f(): ...
        f = D(f)

  • Several decorators can be applied in cascade :
        @A
        @B
        @C
        def f(): ...
    is equivalent to:
        f = A(B(C(f)))
  • A decorator is just a function taking the fct to be decorated and returns the same function or some new callable thing.
  • Decorator functions can take arguments:
        @A
        @B
        @C(args)

    becomes :
        def f(): ...
        _deco = C(args)
        f = A(B(_deco(f)))

  • The decorators @staticmethod and @classmethod replace more elegantly the equivalent declarations f = staticmethod(f) and f = classmethod(f).

Misc

lambda [param_list]: returnedExpr
Creates an anonymous function.
returnedExpr must be an expression, not a statement (e.g., not "if xx:...", "print xxx", etc.) and thus can't contain newlines. Used mostly for filter(), map(), reduce() functions, and GUI callbacks.

List comprehensions
result = [expression for item1 in sequence1  [if condition1]
[for item2 in sequence2 ... for itemN in sequenceN]
]
is equivalent to:
result = []
for item1 in sequence1:
for item2 in sequence2:
...
for itemN in sequenceN:
if (condition1) and further conditions:
result.append(expression)

Nested scopes
Since 2.2 nested scopes no longer need to be specially enabled by a from __future__ import nested_scopes directive, and are always used.

Built-In Functions

Built-in functions are defined in a module _builtin__ automatically imported.
Built-In Functions
Function Result
__import__(name[, globals[,locals[,from list]]]) Imports module within the given context (see library reference for more details)
abs(x) Returns the absolute value of the number x.
apply(f, args[, keywords]) Calls func/method f with arguments args and optional keywords. deprecated since 2.3, replace apply(func, args, keywords) with func(*args, **keywords) [details]
basestring() Abstract superclass of str and unicode; can't be called or instantiated directly, but useful in: isinstance(obj, basestring).
bool([x]) Converts a value to a Boolean, using the standard truth testing procedure. If x is false or omitted, returns False; otherwise returns True. bool is also a class/type, subclass of int. Class bool cannot be subclassed further. Its only instances are False and True. See also boolean operators
buffer(object[, offset[, size]]) Returns a Buffer from a slice of object, which must support the buffer call interface (string, array, buffer). Non essential function, see [details]
callable(x) Returns True if x callable, else False.
chr(i) Returns one-character string whose ASCII code is integer i.
classmethod(function) Returns a class method for function. A class method receives the class as implicit first argument, just like an instance method receives the instance. To declare a class method, use this idiom:

  class C:
    def f(cls, arg1, arg2, ...): ...
    f = classmethod(f)


Then call it on the class C.f() or on an instance C().f(). The instance is ignored except for its class. If a class method is called for a derived class, the derived class object is passed as the implied first argument.
Since 2.4 you can alternatively use the decorator notation:
  class C:
    @classmethod
    def f(cls, arg1, arg2, ...): ...

cmp(x,y) Returns negative, 0, positive if x <, ==, > to y respectively.
coerce(x,y) Returns a tuple of the two numeric arguments converted to a common type. Non essential function, see [details]
compile(string, filename, kind[, flags[, dont_inherit]]) Compiles string into a code object. filename is used in error message, can be any string. It is usually the file from which the code was read, or e.g. '<string>' if not read from file. kind can be 'eval' if string is a single stmt, or 'single' which prints the output of expression statements that evaluate to something else than None, or be 'exec'. New args flags and dont_inherit concern future statements.
complex(real[, image]) Creates a complex object (can also be done using J or j suffix, e.g. 1+3J).
delattr(obj, name) Deletes the attribute named name of object obj <=> del obj.name
dict([mapping-or-sequence]) Returns a new dictionary initialized from the optional argument (or an empty dictionary if no argument). Argument may be a sequence (or anything iterable) of pairs (key,value).
dir([object]) Without args, returns the list of names in the current local symbol table. With a module, class or class instance object as arg, returns the list of names in its attr. dictionary.
divmod(a,b) Returns tuple (a/b, a%b)
enumerate(iterable) Iterator returning pairs (index, value) of iterable, e.g. List(enumerate('Py')) -> [(0, 'P'), (1, 'y')].
eval(s[, globals[, locals]]) Evaluates string s, representing a single python expression, in (optional) globals, locals contexts. s must have no NUL's or newlines. s can also be a code object. locals can be any mapping type, not only a regular Python dict.
Example:
x = 1; assert eval('x + 1') == 2
(To execute statements rather than a single expression, use Python statement exec or built-in function execfile)
execfile(file[, globals[,locals]]) Executes a file without creating a new module, unlike import. locals can be any mapping type, not only a regular Python dict.
file(filename[,mode[,bufsize]]) Opens a file and returns a new