blob: 2ef871f0fae51f424434c53847624b211b967158 [file] [log] [blame]
Raymond Hettinger72348842003-01-25 21:22:52 +00001 Python 2.3 Quick Reference
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002
Guido van Rossumc8180cc1994-08-05 15:57:31 +00003
Raymond Hettinger72348842003-01-25 21:22:52 +00004 25 Jan 2003 upgraded by Raymond Hettinger for Python 2.3
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00005 16 May 2001 upgraded by Richard Gruet and Simon Brunning for Python 2.0
6 2000/07/18 upgraded by Richard Gruet, rgruet@intraware.com for Python 1.5.2
7from V1.3 ref
81995/10/30, by Chris Hoffmann, choffman@vicorp.com
Guido van Rossumc8180cc1994-08-05 15:57:31 +00009
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000010Based on:
11 Python Bestiary, Author: Ken Manheimer, ken.manheimer@nist.gov
12 Python manuals, Authors: Guido van Rossum and Fred Drake
13 What's new in Python 2.0, Authors: A.M. Kuchling and Moshe Zadka
14 python-mode.el, Author: Tim Peters, tim_one@email.msn.com
15
16 and the readers of comp.lang.python
17
18Python's nest: http://www.python.org Developement: http://
19python.sourceforge.net/ ActivePython : http://www.ActiveState.com/ASPN/
20Python/
21newsgroup: comp.lang.python Help desk: help@python.org
Raymond Hettinger72348842003-01-25 21:22:52 +000022Resources: http://starship.python.net/
23 http://www.vex.net/parnassus/
24 http://aspn.activestate.com/ASPN/Cookbook/Python
25FAQ: http://www.python.org/cgi-bin/faqw.py
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000026Full documentation: http://www.python.org/doc/
Raymond Hettinger72348842003-01-25 21:22:52 +000027Excellent reference books:
28 Python Essential Reference by David Beazley (New Riders)
29 Python Pocket Reference by Mark Lutz (O'Reilly)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000030
31
32Invocation Options
33
34python [-diOStuUvxX?] [-c command | script | - ] [args]
35
36 Invocation Options
37Option Effect
Raymond Hettinger72348842003-01-25 21:22:52 +000038-c cmd program passed in as string (terminates option list)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000039-d Outputs parser debugging information (also PYTHONDEBUG=x)
Raymond Hettinger72348842003-01-25 21:22:52 +000040-E ignore environment variables (such as PYTHONPATH)
41-h print this help message and exit
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000042-i Inspect interactively after running script (also PYTHONINSPECT=x) and
43 force prompts, even if stdin appears not to be a terminal
Guido van Rossume7ba4952007-06-06 23:52:48 +000044-m mod run library module as a script (terminates option list
Raymond Hettinger72348842003-01-25 21:22:52 +000045-O optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)
46-OO remove doc-strings in addition to the -O optimizations
47-Q arg division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000048-S Don't perform 'import site' on initialization
49-t Issue warnings about inconsistent tab usage (-tt: issue errors)
50-u Unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x).
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000051-v Verbose (trace import statements) (also PYTHONVERBOSE=x)
Raymond Hettinger72348842003-01-25 21:22:52 +000052-W arg : warning control (arg is action:message:category:module:lineno)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000053-x Skip first line of source, allowing use of non-unix Forms of #!cmd
Andrew M. Kuchling13423f32001-08-06 17:43:49 +000054-? Help!
55-c Specify the command to execute (see next section). This terminates the
56command option list (following options are passed as arguments to the command).
57 the name of a python file (.py) to execute read from stdin.
58script Anything afterward is passed as options to python script or command,
59 not interpreted as an option to interpreter itself.
60args passed to script or command (in sys.argv[1:])
61 If no script or command, Python enters interactive mode.
62
63 * Available IDEs in std distrib: IDLE (tkinter based, portable), Pythonwin
64 (Windows).
65
66
67
68Environment variables
69
70 Environment variables
71 Variable Effect
72PYTHONHOME Alternate prefix directory (or prefix;exec_prefix). The
73 default module search path uses prefix/lib
74 Augments the default search path for module files. The format
75 is the same as the shell's $PATH: one or more directory
76 pathnames separated by ':' or ';' without spaces around
77 (semi-)colons!
78PYTHONPATH On Windows first search for Registry key HKEY_LOCAL_MACHINE\
79 Software\Python\PythonCore\x.y\PythonPath (default value). You
80 may also define a key named after your application with a
81 default string value giving the root directory path of your
82 app.
83 If this is the name of a readable file, the Python commands in
84PYTHONSTARTUP that file are executed before the first prompt is displayed in
85 interactive mode (no default).
86PYTHONDEBUG If non-empty, same as -d option
87PYTHONINSPECT If non-empty, same as -i option
88PYTHONSUPPRESS If non-empty, same as -s option
89PYTHONUNBUFFERED If non-empty, same as -u option
90PYTHONVERBOSE If non-empty, same as -v option
91PYTHONCASEOK If non-empty, ignore case in file/module names (imports)
92
93
94
95
96Notable lexical entities
97
98Keywords
99
100 and del for is raise
101 assert elif from lambda return
102 break else global not try
103 class except if or while
Raymond Hettinger72348842003-01-25 21:22:52 +0000104 continue exec import pass yield
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000105 def finally in print
106
107 * (list of keywords in std module: keyword)
108 * Illegitimate Tokens (only valid in strings): @ $ ?
109 * A statement must all be on a single line. To break a statement over
110 multiple lines use "\", as with the C preprocessor.
111 Exception: can always break when inside any (), [], or {} pair, or in
112 triple-quoted strings.
113 * More than one statement can appear on a line if they are separated with
114 semicolons (";").
115 * Comments start with "#" and continue to end of line.
116
117Identifiers
118
119 (letter | "_") (letter | digit | "_")*
120
121 * Python identifiers keywords, attributes, etc. are case-sensitive.
122 * Special forms: _ident (not imported by 'from module import *'); __ident__
123 (system defined name);
124 __ident (class-private name mangling)
125
126Strings
127
128 "a string enclosed by double quotes"
129 'another string delimited by single quotes and with a " inside'
130 '''a string containing embedded newlines and quote (') marks, can be
131 delimited with triple quotes.'''
132 """ may also use 3- double quotes as delimiters """
133 u'a unicode string' U"Another unicode string"
134 r'a raw string where \ are kept (literalized): handy for regular
135 expressions and windows paths!'
136 R"another raw string" -- raw strings cannot end with a \
137 ur'a unicode raw string' UR"another raw unicode"
138
139 Use \ at end of line to continue a string on next line.
140 adjacent strings are concatened, e.g. 'Monty' ' Python' is the same as
141 'Monty Python'.
142 u'hello' + ' world' --> u'hello world' (coerced to unicode)
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000143
144 String Literal Escapes
145
146 \newline Ignored (escape newline)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000147 \\ Backslash (\) \e Escape (ESC) \v Vertical Tab (VT)
148 \' Single quote (') \f Formfeed (FF) \OOO char with octal value OOO
149 \" Double quote (") \n Linefeed (LF)
150 \a Bell (BEL) \r Carriage Return (CR) \xHH char with hex value HH
151 \b Backspace (BS) \t Horizontal Tab (TAB)
152 \uHHHH unicode char with hex value HHHH, can only be used in unicode string
153 \UHHHHHHHH unicode char with hex value HHHHHHHH, can only be used in unicode string
154 \AnyOtherChar is left as-is
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000155
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000156 * NUL byte (\000) is NOT an end-of-string marker; NULs may be embedded in
157 strings.
158 * Strings (and tuples) are immutable: they cannot be modified.
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000159
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000160Numbers
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000161
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000162 Decimal integer: 1234, 1234567890546378940L (or l)
Raymond Hettinger72348842003-01-25 21:22:52 +0000163 Octal integer: 0177, 0177777777777777777 (begin with a 0)
164 Hex integer: 0xFF, 0XFFFFffffFFFFFFFFFF (begin with 0x or 0X)
165 Long integer (unlimited precision): 1234567890123456
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000166 Float (double precision): 3.14e-10, .001, 10., 1E3
167 Complex: 1J, 2+3J, 4+5j (ends with J or j, + separates (float) real and
168 imaginary parts)
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000169
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000170Sequences
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000171
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000172 * String of length 0, 1, 2 (see above)
173 '', '1', "12", 'hello\n'
174 * Tuple of length 0, 1, 2, etc:
175 () (1,) (1,2) # parentheses are optional if len > 0
176 * List of length 0, 1, 2, etc:
177 [] [1] [1,2]
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000178
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000179Indexing is 0-based. Negative indices (usually) mean count backwards from end
180of sequence.
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000181
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000182Sequence slicing [starting-at-index : but-less-than-index]. Start defaults to
183'0'; End defaults to 'sequence-length'.
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000184
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000185a = (0,1,2,3,4,5,6,7)
186 a[3] ==> 3
187 a[-1] ==> 7
188 a[2:4] ==> (2, 3)
189 a[1:] ==> (1, 2, 3, 4, 5, 6, 7)
190 a[:3] ==> (0, 1, 2)
191 a[:] ==> (0,1,2,3,4,5,6,7) # makes a copy of the sequence.
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000192
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000193Dictionaries (Mappings)
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000194
Raymond Hettinger72348842003-01-25 21:22:52 +0000195 {} # Zero length empty dictionary
196 {1 : 'first'} # Dictionary with one (key, value) pair
197 {1 : 'first', 'next': 'second'}
198 dict([('one',1),('two',2)]) # Construct a dict from an item list
199 dict('one'=1, 'two'=2) # Construct a dict using keyword args
200 dict.fromkeys(['one', 'keys']) # Construct a dict from a sequence
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000201
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000202Operators and their evaluation order
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000203
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000204 Operators and their evaluation order
205Highest Operator Comment
206 (...) [...] {...} `...` Tuple, list & dict. creation; string
207 conv.
208 s[i] s[i:j] s.attr f(...) indexing & slicing; attributes, fct
209 calls
210 +x, -x, ~x Unary operators
211 x**y Power
Raymond Hettingere685f942003-01-26 03:29:15 +0000212 x*y x/y x%y x//y mult, division, modulo, floor division
Georg Brandlf33d01d2005-08-22 19:35:18 +0000213 x+y x-y addition, subtraction
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000214 x<<y x>>y Bit shifting
215 x&y Bitwise and
216 x^y Bitwise exclusive or
217 x|y Bitwise or
218 x<y x<=y x>y x>=y x==y x!=y Comparison,
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000219 x is y x is not y membership
220 x in s x not in s
221 not x boolean negation
222 x and y boolean and
223 x or y boolean or
224Lowest lambda args: expr anonymous function
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000225
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000226Alternate names are defined in module operator (e.g. __add__ and add for +)
Raymond Hettinger72348842003-01-25 21:22:52 +0000227Most operators are overridable.
228
Raymond Hettinger5a772d32003-01-25 22:35:42 +0000229Many binary operators also support augmented assignment:
Raymond Hettinger72348842003-01-25 21:22:52 +0000230 x += 1 # Same as x = x + 1
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000231
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000232
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000233Basic Types and Their Operations
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000234
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000235Comparisons (defined between *any* types)
Guido van Rossumc8180cc1994-08-05 15:57:31 +0000236
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000237 Comparisons
238Comparison Meaning Notes
239< strictly less than (1)
240<= less than or equal to
241> strictly greater than
242>= greater than or equal to
243== equal to
Neal Norwitz3bd844e2006-08-29 04:39:12 +0000244!= not equal to
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000245is object identity (2)
246is not negated object identity (2)
247
248Notes :
249 Comparison behavior can be overridden for a given class by defining special
250method __cmp__.
Andrew M. Kuchling55be9ea2004-09-10 12:59:54 +0000251 The above comparisons return True or False which are of type bool
Raymond Hettinger5a772d32003-01-25 22:35:42 +0000252(a subclass of int) and behave exactly as 1 or 0 except for their type and
Raymond Hettinger72348842003-01-25 21:22:52 +0000253that they print as True or False instead of 1 or 0.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000254 (1) X < Y < Z < W has expected meaning, unlike C
255 (2) Compare object identities (i.e. id(object)), not object values.
256
257Boolean values and operators
258
259 Boolean values and operators
260 Value or Operator Returns Notes
261None, numeric zeros, empty sequences and False
262mappings
263all other values True
264not x True if x is False, else
265 True
266x or y if x is False then y, else (1)
267 x
268x and y if x is False then x, else (1)
269 y
270
271Notes :
272 Truth testing behavior can be overridden for a given class by defining
Jack Diederich62971282006-11-30 20:50:23 +0000273special method __bool__.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000274 (1) Evaluate second arg only if necessary to determine outcome.
275
276None
277
278 None is used as default return value on functions. Built-in single object
279 with type NoneType.
280 Input that evaluates to None does not print when running Python
281 interactively.
282
283Numeric types
284
285Floats, integers and long integers.
286
287 Floats are implemented with C doubles.
288 Integers are implemented with C longs.
289 Long integers have unlimited size (only limit is system resources)
290
291Operators on all numeric types
292
293 Operators on all numeric types
294 Operation Result
295abs(x) the absolute value of x
296int(x) x converted to integer
297long(x) x converted to long integer
298float(x) x converted to floating point
299-x x negated
300+x x unchanged
301x + y the sum of x and y
302x - y difference of x and y
303x * y product of x and y
304x / y quotient of x and y
305x % y remainder of x / y
306divmod(x, y) the tuple (x/y, x%y)
307x ** y x to the power y (the same as pow(x, y))
308
309Bit operators on integers and long integers
310
311 Bit operators
312Operation >Result
313~x the bits of x inverted
314x ^ y bitwise exclusive or of x and y
315x & y bitwise and of x and y
316x | y bitwise or of x and y
317x << n x shifted left by n bits
318x >> n x shifted right by n bits
319
320Complex Numbers
321
322 * represented as a pair of machine-level double precision floating point
323 numbers.
324 * The real and imaginary value of a complex number z can be retrieved through
325 the attributes z.real and z.imag.
326
327Numeric exceptions
328
329TypeError
330 raised on application of arithmetic operation to non-number
331OverflowError
332 numeric bounds exceeded
333ZeroDivisionError
334 raised when zero second argument of div or modulo op
Raymond Hettingere685f942003-01-26 03:29:15 +0000335FloatingPointError
336 raised when a floating point operation fails
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000337
338Operations on all sequence types (lists, tuples, strings)
339
340 Operations on all sequence types
341Operation Result Notes
Raymond Hettingere685f942003-01-26 03:29:15 +0000342x in s True if an item of s is equal to x, else False
343x not in s False if an item of s is equal to x, else True
Raymond Hettinger72348842003-01-25 21:22:52 +0000344for x in s: loops over the sequence
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000345s + t the concatenation of s and t
346s * n, n*s n copies of s concatenated
347s[i] i'th item of s, origin 0 (1)
348s[i:j] slice of s from i (included) to j (excluded) (1), (2)
349len(s) length of s
350min(s) smallest item of s
351max(s) largest item of (s)
Raymond Hettinger72348842003-01-25 21:22:52 +0000352iter(s) returns an iterator over s. iterators define __iter__ and next()
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000353
354Notes :
355 (1) if i or j is negative, the index is relative to the end of the string,
356ie len(s)+ i or len(s)+j is
357 substituted. But note that -0 is still 0.
358 (2) The slice of s from i to j is defined as the sequence of items with
359index k such that i <= k < j.
360 If i or j is greater than len(s), use len(s). If i is omitted, use
361len(s). If i is greater than or
362 equal to j, the slice is empty.
363
364Operations on mutable (=modifiable) sequences (lists)
365
366 Operations on mutable sequences
367 Operation Result Notes
368s[i] =x item i of s is replaced by x
369s[i:j] = t slice of s from i to j is replaced by t
370del s[i:j] same as s[i:j] = []
371s.append(x) same as s[len(s) : len(s)] = [x]
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000372s.count(x) return number of i's for which s[i] == x
Raymond Hettingere685f942003-01-26 03:29:15 +0000373s.extend(x) same as s[len(s):len(s)]= x
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000374s.index(x) return smallest i such that s[i] == x (1)
375s.insert(i, x) same as s[i:i] = [x] if i >= 0
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000376s.pop([i]) same as x = s[i]; del s[i]; return x (4)
Raymond Hettinger72348842003-01-25 21:22:52 +0000377s.remove(x) same as del s[s.index(x)] (1)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000378s.reverse() reverse the items of s in place (3)
379s.sort([cmpFct]) sort the items of s in place (2), (3)
380
381Notes :
382 (1) raise a ValueError exception when x is not found in s (i.e. out of
383range).
384 (2) The sort() method takes an optional argument specifying a comparison
385fct of 2 arguments (list items) which should
386 return -1, 0, or 1 depending on whether the 1st argument is
387considered smaller than, equal to, or larger than the 2nd
388 argument. Note that this slows the sorting process down considerably.
389 (3) The sort() and reverse() methods modify the list in place for economy
390of space when sorting or reversing a large list.
391 They don't return the sorted or reversed list to remind you of this
392side effect.
Raymond Hettinger72348842003-01-25 21:22:52 +0000393 (4) [New 1.5.2] The optional argument i defaults to -1, so that by default the last
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000394item is removed and returned.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000395
396
397
398Operations on mappings (dictionaries)
399
400 Operations on mappings
401 Operation Result Notes
402len(d) the number of items in d
403d[k] the item of d with key k (1)
404d[k] = x set d[k] to x
405del d[k] remove d[k] from d (1)
406d.clear() remove all items from d
407d.copy() a shallow copy of d
Raymond Hettinger72348842003-01-25 21:22:52 +0000408d.get(k,defaultval) the item of d with key k (4)
Raymond Hettingere685f942003-01-26 03:29:15 +0000409d.has_key(k) True if d has key k, else False
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000410d.items() a copy of d's list of (key, item) pairs (2)
Raymond Hettinger72348842003-01-25 21:22:52 +0000411d.iteritems() an iterator over (key, value) pairs (7)
412d.iterkeys() an iterator over the keys of d (7)
413d.itervalues() an iterator over the values of d (7)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000414d.keys() a copy of d's list of keys (2)
415d1.update(d2) for k, v in d2.items(): d1[k] = v (3)
416d.values() a copy of d's list of values (2)
Raymond Hettinger72348842003-01-25 21:22:52 +0000417d.pop(k) remove d[k] and return its value
418d.popitem() remove and return an arbitrary (6)
419 (key, item) pair
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000420d.setdefault(k,defaultval) the item of d with key k (5)
421
422 Notes :
423 TypeError is raised if key is not acceptable
424 (1) KeyError is raised if key k is not in the map
425 (2) Keys and values are listed in random order
426 (3) d2 must be of the same type as d1
427 (4) Never raises an exception if k is not in the map, instead it returns
428 defaultVal.
429 defaultVal is optional, when not provided and k is not in the map,
430 None is returned.
431 (5) Never raises an exception if k is not in the map, instead it returns
432 defaultVal, and adds k to map with value defaultVal. defaultVal is
433 optional. When not provided and k is not in the map, None is returned and
434 added to map.
Raymond Hettinger72348842003-01-25 21:22:52 +0000435 (6) Raises a KeyError if the dictionary is emtpy.
436 (7) While iterating over a dictionary, the values may be updated but
437 the keys cannot be changed.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000438
439Operations on strings
440
441Note that these string methods largely (but not completely) supersede the
442functions available in the string module.
443
444
445 Operations on strings
446 Operation Result Notes
447s.capitalize() return a copy of s with only its first character
448 capitalized.
449s.center(width) return a copy of s centered in a string of length width (1)
450 .
451s.count(sub[ return the number of occurrences of substring sub in (2)
452,start[,end]]) string s.
Raymond Hettinger72348842003-01-25 21:22:52 +0000453s.decode(([ return a decoded version of s. (3)
454 encoding
455 [,errors]])
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000456s.encode([ return an encoded version of s. Default encoding is the
Raymond Hettinger72348842003-01-25 21:22:52 +0000457 encoding current default string encoding. (3)
458 [,errors]])
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000459s.endswith(suffix return true if s ends with the specified suffix, (2)
Raymond Hettinger72348842003-01-25 21:22:52 +0000460 [,start[,end]]) otherwise return False.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000461s.expandtabs([ return a copy of s where all tab characters are (4)
462tabsize]) expanded using spaces.
463s.find(sub[,start return the lowest index in s where substring sub is (2)
464[,end]]) found. Return -1 if sub is not found.
465s.index(sub[ like find(), but raise ValueError when the substring is (2)
466,start[,end]]) not found.
Raymond Hettinger72348842003-01-25 21:22:52 +0000467s.isalnum() return True if all characters in s are alphanumeric, (5)
468 False otherwise.
469s.isalpha() return True if all characters in s are alphabetic, (5)
470 False otherwise.
471s.isdigit() return True if all characters in s are digit (5)
472 characters, False otherwise.
473s.islower() return True if all characters in s are lowercase, False (6)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000474 otherwise.
Raymond Hettinger72348842003-01-25 21:22:52 +0000475s.isspace() return True if all characters in s are whitespace (5)
476 characters, False otherwise.
477s.istitle() return True if string s is a titlecased string, False (7)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000478 otherwise.
Raymond Hettinger72348842003-01-25 21:22:52 +0000479s.isupper() return True if all characters in s are uppercase, False (6)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000480 otherwise.
481s.join(seq) return a concatenation of the strings in the sequence
482 seq, seperated by 's's.
483s.ljust(width) return s left justified in a string of length width. (1),
484 (8)
485s.lower() return a copy of s converted to lowercase.
486s.lstrip() return a copy of s with leading whitespace removed.
487s.replace(old, return a copy of s with all occurrences of substring (9)
488new[, maxsplit]) old replaced by new.
489s.rfind(sub[ return the highest index in s where substring sub is (2)
490,start[,end]]) found. Return -1 if sub is not found.
491s.rindex(sub[ like rfind(), but raise ValueError when the substring (2)
492,start[,end]]) is not found.
493s.rjust(width) return s right justified in a string of length width. (1),
494 (8)
495s.rstrip() return a copy of s with trailing whitespace removed.
496s.split([sep[ return a list of the words in s, using sep as the (10)
497,maxsplit]]) delimiter string.
498s.splitlines([ return a list of the lines in s, breaking at line (11)
499keepends]) boundaries.
500s.startswith return true if s starts with the specified prefix,
501(prefix[,start[ otherwise return false. (2)
502,end]])
503s.strip() return a copy of s with leading and trailing whitespace
504 removed.
505s.swapcase() return a copy of s with uppercase characters converted
506 to lowercase and vice versa.
507 return a titlecased copy of s, i.e. words start with
508s.title() uppercase characters, all remaining cased characters
509 are lowercase.
510s.translate(table return a copy of s mapped through translation table (12)
511[,deletechars]) table.
512s.upper() return a copy of s converted to uppercase.
Raymond Hettinger5a772d32003-01-25 22:35:42 +0000513s.zfill(width) return a string padded with zeroes on the left side and
Raymond Hettinger72348842003-01-25 21:22:52 +0000514 sliding a minus sign left if necessary. never truncates.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000515
516Notes :
517 (1) Padding is done using spaces.
518 (2) If optional argument start is supplied, substring s[start:] is
519processed. If optional arguments start and end are supplied, substring s[start:
520end] is processed.
521 (3) Optional argument errors may be given to set a different error handling
522scheme. The default for errors is 'strict', meaning that encoding errors raise
523a ValueError. Other possible values are 'ignore' and 'replace'.
524 (4) If optional argument tabsize is not given, a tab size of 8 characters
525is assumed.
526 (5) Returns false if string s does not contain at least one character.
527 (6) Returns false if string s does not contain at least one cased
528character.
529 (7) A titlecased string is a string in which uppercase characters may only
530follow uncased characters and lowercase characters only cased ones.
531 (8) s is returned if width is less than len(s).
532 (9) If the optional argument maxsplit is given, only the first maxsplit
533occurrences are replaced.
534 (10) If sep is not specified or None, any whitespace string is a separator.
535If maxsplit is given, at most maxsplit splits are done.
536 (11) Line breaks are not included in the resulting list unless keepends is
537given and true.
538 (12) table must be a string of length 256. All characters occurring in the
539optional argument deletechars are removed prior to translation.
540
541String formatting with the % operator
542
543formatString % args--> evaluates to a string
544
545 * formatString uses C printf format codes : %, c, s, i, d, u, o, x, X, e, E,
546 f, g, G, r (details below).
547 * Width and precision may be a * to specify that an integer argument gives
548 the actual width or precision.
549 * The flag characters -, +, blank, # and 0 are understood. (details below)
550 * %s will convert any type argument to string (uses str() function)
551 * args may be a single arg or a tuple of args
552
553 '%s has %03d quote types.' % ('Python', 2) # => 'Python has 002 quote types.'
554
555 * Right-hand-side can also be a mapping:
556
557 a = '%(lang)s has %(c)03d quote types.' % {'c':2, 'lang':'Python}
558(vars() function very handy to use on right-hand-side.)
559
560 Format codes
561Conversion Meaning
562d Signed integer decimal.
563i Signed integer decimal.
564o Unsigned octal.
565u Unsigned decimal.
566x Unsigned hexidecimal (lowercase).
567X Unsigned hexidecimal (uppercase).
568e Floating point exponential format (lowercase).
569E Floating point exponential format (uppercase).
570f Floating point decimal format.
571F Floating point decimal format.
572g Same as "e" if exponent is greater than -4 or less than precision,
573 "f" otherwise.
574G Same as "E" if exponent is greater than -4 or less than precision,
575 "F" otherwise.
576c Single character (accepts integer or single character string).
577r String (converts any python object using repr()).
578s String (converts any python object using str()).
579% No argument is converted, results in a "%" character in the result.
580 (The complete specification is %%.)
581
582 Conversion flag characters
583Flag Meaning
584# The value conversion will use the ``alternate form''.
5850 The conversion will be zero padded.
586- The converted value is left adjusted (overrides "-").
587 (a space) A blank should be left before a positive number (or empty
588 string) produced by a signed conversion.
589+ A sign character ("+" or "-") will precede the conversion (overrides a
590 "space" flag).
591
592File Objects
593
594Created with built-in function open; may be created by other modules' functions
595as well.
596
597Operators on file objects
598
599 File operations
600 Operation Result
601f.close() Close file f.
602f.fileno() Get fileno (fd) for file f.
603f.flush() Flush file f's internal buffer.
Raymond Hettingere685f942003-01-26 03:29:15 +0000604f.isatty() True if file f is connected to a tty-like dev, else False.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000605f.read([size]) Read at most size bytes from file f and return as a string
606 object. If size omitted, read to EOF.
607f.readline() Read one entire line from file f.
608f.readlines() Read until EOF with readline() and return list of lines read.
609 Set file f's position, like "stdio's fseek()".
610f.seek(offset[, whence == 0 then use absolute indexing.
611whence=0]) whence == 1 then offset relative to current pos.
612 whence == 2 then offset relative to file end.
613f.tell() Return file f's current position (byte offset).
614f.write(str) Write string to file f.
615f.writelines(list Write list of strings to file f.
616)
617
618File Exceptions
619
620 EOFError
621 End-of-file hit when reading (may be raised many times, e.g. if f is a
622 tty).
623 IOError
Raymond Hettingere685f942003-01-26 03:29:15 +0000624 Other I/O-related I/O operation failure.
625 OSError
626 OS system call failed.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000627
628
629 Advanced Types
630
631 -See manuals for more details -
632 + Module objects
633 + Class objects
634 + Class instance objects
635 + Type objects (see module: types)
636 + File objects (see above)
637 + Slice objects
638 + XRange objects
639 + Callable types:
640 o User-defined (written in Python):
641 # User-defined Function objects
642 # User-defined Method objects
643 o Built-in (written in C):
644 # Built-in Function objects
645 # Built-in Method objects
646 + Internal Types:
647 o Code objects (byte-compile executable Python code: bytecode)
648 o Frame objects (execution frames)
649 o Traceback objects (stack trace of an exception)
650
651
652 Statements
653
654 pass -- Null statement
655 del name[,name]* -- Unbind name(s) from object. Object will be indirectly
656 (and automatically) deleted only if no longer referenced.
657 print [>> fileobject,] [s1 [, s2 ]* [,]
658 -- Writes to sys.stdout, or to fileobject if supplied.
659 Puts spaces between arguments. Puts newline at end
660 unless statement ends with comma.
661 Print is not required when running interactively,
662 simply typing an expression will print its value,
663 unless the value is None.
664 exec x [in globals [,locals]]
665 -- Executes x in namespaces provided. Defaults
666 to current namespaces. x can be a string, file
667 object or a function object.
668 callable(value,... [id=value], [*args], [**kw])
669 -- Call function callable with parameters. Parameters can
670 be passed by name or be omitted if function
671 defines default values. E.g. if callable is defined as
672 "def callable(p1=1, p2=2)"
673 "callable()" <=> "callable(1, 2)"
674 "callable(10)" <=> "callable(10, 2)"
675 "callable(p2=99)" <=> "callable(1, 99)"
676 *args is a tuple of positional arguments.
677 **kw is a dictionary of keyword arguments.
678
679 Assignment operators
680
681 Caption
682 Operator Result Notes
683 a = b Basic assignment - assign object b to label a (1)
684 a += b Roughly equivalent to a = a + b (2)
685 a -= b Roughly equivalent to a = a - b (2)
686 a *= b Roughly equivalent to a = a * b (2)
687 a /= b Roughly equivalent to a = a / b (2)
688 a %= b Roughly equivalent to a = a % b (2)
689 a **= b Roughly equivalent to a = a ** b (2)
690 a &= b Roughly equivalent to a = a & b (2)
691 a |= b Roughly equivalent to a = a | b (2)
692 a ^= b Roughly equivalent to a = a ^ b (2)
693 a >>= b Roughly equivalent to a = a >> b (2)
694 a <<= b Roughly equivalent to a = a << b (2)
695
696 Notes :
697 (1) Can unpack tuples, lists, and strings.
698 first, second = a[0:2]; [f, s] = range(2); c1,c2,c3='abc'
699 Tip: x,y = y,x swaps x and y.
700 (2) Not exactly equivalent - a is evaluated only once. Also, where
701 possible, operation performed in-place - a is modified rather than
702 replaced.
703
704 Control Flow
705
706 if condition: suite
707 [elif condition: suite]*
708 [else: suite] -- usual if/else_if/else statement
709 while condition: suite
710 [else: suite]
711 -- usual while statement. "else" suite is executed
712 after loop exits, unless the loop is exited with
713 "break"
714 for element in sequence: suite
715 [else: suite]
716 -- iterates over sequence, assigning each element to element.
717 Use built-in range function to iterate a number of times.
718 "else" suite executed at end unless loop exited
719 with "break"
720 break -- immediately exits "for" or "while" loop
721 continue -- immediately does next iteration of "for" or "while" loop
722 return [result] -- Exits from function (or method) and returns result (use a tuple to
723 return more than one value). If no result given, then returns None.
Raymond Hettingere685f942003-01-26 03:29:15 +0000724 yield result -- Freezes the execution frame of a generator and returns the result
Georg Brandla18af4e2007-04-21 15:47:16 +0000725 to the iterator's .__next__() method. Upon the next call to __next__(),
Raymond Hettingere685f942003-01-26 03:29:15 +0000726 resumes execution at the frozen point with all of the local variables
727 still intact.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000728
729 Exception Statements
730
731 assert expr[, message]
732 -- expr is evaluated. if false, raises exception AssertionError
733 with message. Inhibited if __debug__ is 0.
734 try: suite1
735 [except [exception [, value]: suite2]+
736 [else: suite3]
737 -- statements in suite1 are executed. If an exception occurs, look
738 in "except" clauses for matching <exception>. If matches or bare
739 "except" execute suite of that clause. If no exception happens
740 suite in "else" clause is executed after suite1.
741 If exception has a value, it is put in value.
742 exception can also be tuple of exceptions, e.g.
743 "except (KeyError, NameError), val: print val"
744 try: suite1
745 finally: suite2
746 -- statements in suite1 are executed. If no
747 exception, execute suite2 (even if suite1 is
748 exited with a "return", "break" or "continue"
749 statement). If exception did occur, executes
750 suite2 and then immediately reraises exception.
751 raise exception [,value [, traceback]]
752 -- raises exception with optional value
753 value. Arg traceback specifies a traceback object to
754 use when printing the exception's backtrace.
755 raise -- a raise statement without arguments re-raises
756 the last exception raised in the current function
757An exception is either a string (object) or a class instance.
758 Can create a new one simply by creating a new string:
759
760 my_exception = 'You did something wrong'
761 try:
762 if bad:
763 raise my_exception, bad
764 except my_exception, value:
765 print 'Oops', value
766
767Exception classes must be derived from the predefined class: Exception, e.g.:
768 class text_exception(Exception): pass
769 try:
770 if bad:
771 raise text_exception()
772 # This is a shorthand for the form
773 # "raise <class>, <instance>"
774 except Exception:
775 print 'Oops'
776 # This will be printed because
777 # text_exception is a subclass of Exception
778When an error message is printed for an unhandled exception which is a
779class, the class name is printed, then a colon and a space, and
780finally the instance converted to a string using the built-in function
781str().
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000782All built-in exception classes derives from Exception, itself
783derived from BaseException.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000784
785Name Space Statements
786
787[1.51: On Mac & Windows, the case of module file names must now match the case
788as used
789 in the import statement]
790Packages (>1.5): a package is a name space which maps to a directory including
791 module(s) and the special initialization module '__init__.py'
792 (possibly empty). Packages/dirs can be nested. You address a
793 module's symbol via '[package.[package...]module.symbol's.
794import module1 [as name1] [, module2]*
795 -- imports modules. Members of module must be
796 referred to by qualifying with [package.]module name:
797 "import sys; print sys.argv:"
798 "import package1.subpackage.module; package1.subpackage.module.foo()"
799 module1 renamed as name1, if supplied.
800from module import name1 [as othername1] [, name2]*
801 -- imports names from module module in current namespace.
802 "from sys import argv; print argv"
803 "from package1 import module; module.foo()"
804 "from package1.module import foo; foo()"
805 name1 renamed as othername1, if supplied.
806from module import *
807 -- imports all names in module, except those starting with "_";
808 *to be used sparsely, beware of name clashes* :
809 "from sys import *; print argv"
810 "from package.module import *; print x'
811 NB: "from package import *" only imports the symbols defined
812 in the package's __init__.py file, not those in the
813 template modules!
814global name1 [, name2]*
815 -- names are from global scope (usually meaning from module)
816 rather than local (usually meaning only in function).
817 -- E.g. in fct without "global" statements, assuming
818 "a" is name that hasn't been used in fct or module
819 so far:
820 -Try to read from "a" -> NameError
821 -Try to write to "a" -> creates "a" local to fcn
822 -If "a" not defined in fct, but is in module, then
823 -Try to read from "a", gets value from module
824 -Try to write to "a", creates "a" local to fct
825 But note "a[0]=3" starts with search for "a",
826 will use to global "a" if no local "a".
827
828Function Definition
829
830def func_id ([param_list]): suite
831 -- Creates a function object & binds it to name func_id.
832
833 param_list ::= [id [, id]*]
834 id ::= value | id = value | *id | **id
835 [Args are passed by value.Thus only args representing a mutable object
836 can be modified (are inout parameters). Use a tuple to return more than
837 one value]
838
839Example:
840 def test (p1, p2 = 1+1, *rest, **keywords):
841 -- Parameters with "=" have default value (v is
842 evaluated when function defined).
843 If list has "*id" then id is assigned a tuple of
844 all remaining args passed to function (like C vararg)
845 If list has "**id" then id is assigned a dictionary of
846 all extra arguments passed as keywords.
847
848Class Definition
849
850class <class_id> [(<super_class1> [,<super_class2>]*)]: <suite>
851 -- Creates a class object and assigns it name <class_id>
852 <suite> may contain local "defs" of class methods and
853 assignments to class attributes.
854Example:
855 class my_class (class1, class_list[3]): ...
856 Creates a class object inheriting from both "class1" and whatever
857 class object "class_list[3]" evaluates to. Assigns new
858 class object to name "my_class".
859 - First arg to class methods is always instance object, called 'self'
860 by convention.
861 - Special method __init__() is called when instance is created.
862 - Special method __del__() called when no more reference to object.
863 - Create instance by "calling" class object, possibly with arg
864 (thus instance=apply(aClassObject, args...) creates an instance!)
865 - In current implementation, can't subclass off built-in
866 classes. But can "wrap" them, see UserDict & UserList modules,
867 and see __getattr__() below.
868Example:
869 class c (c_parent):
870 def __init__(self, name): self.name = name
871 def print_name(self): print "I'm", self.name
872 def call_parent(self): c_parent.print_name(self)
873 instance = c('tom')
874 print instance.name
875 'tom'
876 instance.print_name()
877 "I'm tom"
878 Call parent's super class by accessing parent's method
879 directly and passing "self" explicitly (see "call_parent"
880 in example above).
881 Many other special methods available for implementing
882 arithmetic operators, sequence, mapping indexing, etc.
883
884Documentation Strings
885
886Modules, classes and functions may be documented by placing a string literal by
887itself as the first statement in the suite. The documentation can be retrieved
888by getting the '__doc__' attribute from the module, class or function.
889Example:
890 class C:
891 "A description of C"
892 def __init__(self):
893 "A description of the constructor"
894 # etc.
895Then c.__doc__ == "A description of C".
896Then c.__init__.__doc__ == "A description of the constructor".
897
898Others
899
900lambda [param_list]: returnedExpr
901 -- Creates an anonymous function. returnedExpr must be
902 an expression, not a statement (e.g., not "if xx:...",
903 "print xxx", etc.) and thus can't contain newlines.
Guido van Rossum0919a1a2006-08-26 20:49:04 +0000904 Used mostly for filter(), map() functions, and GUI callbacks..
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000905List comprehensions
906result = [expression for item1 in sequence1 [if condition1]
907 [for item2 in sequence2 ... for itemN in sequenceN]
908 ]
909is equivalent to:
910result = []
911for item1 in sequence1:
912 for item2 in sequence2:
913 ...
914 for itemN in sequenceN:
915 if (condition1) and furthur conditions:
916 result.append(expression)
917
918
919
920Built-In Functions
921
922 Built-In Functions
923 Function Result
924__import__(name[, Imports module within the given context (see lib ref for
925globals[, locals[, more details)
926fromlist]]])
927abs(x) Return the absolute value of number x.
Raymond Hettingere685f942003-01-26 03:29:15 +0000928bool(x) Returns True when the argument x is true and False otherwise.
929buffer(obj) Creates a buffer reference to an object.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000930chr(i) Returns one-character string whose ASCII code isinteger i
Raymond Hettingere685f942003-01-26 03:29:15 +0000931classmethod(f) Converts a function f, into a method with the class as the
932 first argument. Useful for creating alternative constructors.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000933cmp(x,y) Returns negative, 0, positive if x <, ==, > to y
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000934compile(string, from which the code was read, or eg. '<string>'if not read
935filename, kind) from file.kind can be 'eval' if string is a single stmt, or
936 'single' which prints the output of expression statements
Guido van Rossume7ba4952007-06-06 23:52:48 +0000937 that evaluate to something else than None, or be 'exec'.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000938complex(real[, Builds a complex object (can also be done using J or j
939image]) suffix,e.g. 1+3J)
940delattr(obj, name) deletes attribute named name of object obj <=> del obj.name
941 If no args, returns the list of names in current
Raymond Hettingere685f942003-01-26 03:29:15 +0000942dict([items]) Create a new dictionary from the specified item list.
Guido van Rossume7ba4952007-06-06 23:52:48 +0000943dir([object]) local symbol table. With a module, class or class
944 instance object as arg, returns list of names in its attr.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000945 dict.
946divmod(a,b) Returns tuple of (a/b, a%b)
Raymond Hettingere685f942003-01-26 03:29:15 +0000947enumerate(seq) Return a iterator giving: (0, seq[0]), (1, seq[1]), ...
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000948eval(s[, globals[, Eval string s in (optional) globals, locals contexts.s must
949locals]]) have no NUL's or newlines. s can also be acode object.
950 Example: x = 1; incr_x = eval('x + 1')
951execfile(file[, Executes a file without creating a new module, unlike
952globals[, locals]]) import.
Raymond Hettingere685f942003-01-26 03:29:15 +0000953file() Synonym for open().
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000954filter(function, Constructs a list from those elements of sequence for which
955sequence) function returns true. function takes one parameter.
956float(x) Converts a number or a string to floating point.
957getattr(object, [<default> arg added in 1.5.2]Gets attribute called name
958name[, default])) from object,e.g. getattr(x, 'f') <=> x.f). If not found,
Guido van Rossume7ba4952007-06-06 23:52:48 +0000959 raises AttributeError or returns default if specified.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000960globals() Returns a dictionary containing current global variables.
961hasattr(object, Returns true if object has attr called name.
962name)
963hash(object) Returns the hash value of the object (if it has one)
Raymond Hettingere685f942003-01-26 03:29:15 +0000964help(f) Display documentation on object f.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000965hex(x) Converts a number x to a hexadecimal string.
966id(object) Returns a unique 'identity' integer for an object.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000967int(x[, base]) base paramenter specifies base from which to convert string
968 values.
Guido van Rossume7ba4952007-06-06 23:52:48 +0000969isinstance(obj, Returns true if obj is an instance of class. Ifissubclass
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000970class) (A,B) then isinstance(x,A) => isinstance(x,B)
971issubclass(class1, returns true if class1 is derived from class2
972class2)
973 Returns the length (the number of items) of an object
Raymond Hettingere685f942003-01-26 03:29:15 +0000974iter(collection) Returns an iterator over the collection.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +0000975len(obj) (sequence, dictionary, or instance of class implementing
976 __len__).
977list(sequence) Converts sequence into a list. If already a list,returns a
978 copy of it.
979locals() Returns a dictionary containing current local variables.
980 Converts a number or a string to a long integer. Optional
981long(x[, base]) base paramenter specifies base from which to convert string
982 values.
983 Applies function to every item of list and returns a listof
984map(function, list, the results. If additional arguments are passed,function
985...) must take that many arguments and it is givento function on
986 each call.
987max(seq) Returns the largest item of the non-empty sequence seq.
988min(seq) Returns the smallest item of a non-empty sequence seq.
989oct(x) Converts a number to an octal string.
990open(filename [, Returns a new file object. First two args are same asthose
991mode='r', [bufsize= for C's "stdio open" function. bufsize is 0for unbuffered,
992implementation 1 for line-buffered, negative forsys-default, all else, of
993dependent]]) (about) given size.
994ord(c) Returns integer ASCII value of c (a string of len 1). Works
995 with Unicode char.
Raymond Hettingere685f942003-01-26 03:29:15 +0000996object() Create a base type. Used as a superclass for new-style objects.
997open(name Open a file.
998 [, mode
999 [, buffering]])
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001000pow(x, y [, z]) Returns x to power y [modulo z]. See also ** operator.
Raymond Hettingere685f942003-01-26 03:29:15 +00001001property() Created a property with access controlled by functions.
Guido van Rossume7ba4952007-06-06 23:52:48 +00001002range(start [,end Returns list of ints from >= start and < end. With 1 arg,
1003[, step]]) list from 0..arg-1. With 2 args, list from start..end-1.
1004 With 3 args, list from start up to end by step
1005 after fixing it.
1006repr(object) Returns a string containing a printable and if possible
1007 evaluable representation of an object.
Neal Norwitz3bd844e2006-08-29 04:39:12 +00001008 Class redefinable (__repr__). See also str().
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001009round(x, n=0) Returns the floating point value x rounded to n digitsafter
1010 the decimal point.
Guido van Rossume7ba4952007-06-06 23:52:48 +00001011setattr(object, This is the counterpart of getattr(). setattr(o, 'foobar',
1012name, value) 3) <=> o.foobar = 3. Creates attribute if it doesn't exist!
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001013slice([start,] stop Returns a slice object representing a range, with R/
Guido van Rossume7ba4952007-06-06 23:52:48 +00001014[, step]) O attributes: start, stop, step.
Raymond Hettingere685f942003-01-26 03:29:15 +00001015staticmethod() Convert a function to method with no self or class
1016 argument. Useful for methods associated with a class that
1017 do not need access to an object's internal state.
Guido van Rossume7ba4952007-06-06 23:52:48 +00001018str(object) Returns a string containing a nicely
1019 printable representation of an object. Class overridable
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001020 (__str__).See also repr().
Raymond Hettingere685f942003-01-26 03:29:15 +00001021super(type) Create an unbound super object. Used to call cooperative
1022 superclass methods.
Raymond Hettingerca60cac2003-07-12 23:55:57 +00001023sum(sequence, Add the values in the sequence and return the sum.
1024 [start])
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001025tuple(sequence) Creates a tuple with same elements as sequence. If already
1026 a tuple, return itself (not a copy).
1027 Returns a type object [see module types] representing
1028 thetype of obj. Example: import typesif type(x) ==
1029type(obj) types.StringType: print 'It is a string'NB: it is
1030 recommanded to use the following form:if isinstance(x,
1031 types.StringType): etc...
1032unichr(code) code.
1033unicode(string[, Creates a Unicode string from a 8-bit string, using
1034encoding[, error thegiven encoding name and error treatment ('strict',
1035]]]) 'ignore',or 'replace'}.
1036 Without arguments, returns a dictionary correspondingto the
1037 current local symbol table. With a module,class or class
1038vars([object]) instance object as argumentreturns a dictionary
1039 corresponding to the object'ssymbol table. Useful with "%"
1040 formatting operator.
Guido van Rossume7ba4952007-06-06 23:52:48 +00001041zip(seq1[, seq2, Returns an iterator of tuples where each tuple contains
1042...]) the nth element of each of the argument sequences.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001043
1044
1045
1046Built-In Exceptions
1047
1048Exception>
1049 Root class for all exceptions
1050 SystemExit
1051 On 'sys.exit()'
Raymond Hettingere685f942003-01-26 03:29:15 +00001052 StopIteration
Georg Brandla18af4e2007-04-21 15:47:16 +00001053 Signal the end from iterator.__next__()
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001054 ArithmeticError
1055 Base class for OverflowError, ZeroDivisionError,
1056 FloatingPointError
1057 FloatingPointError
1058 When a floating point operation fails.
1059 OverflowError
1060 On excessively large arithmetic operation
1061 ZeroDivisionError
1062 On division or modulo operation with 0 as 2nd arg
1063 AssertionError
1064 When an assert statement fails.
1065 AttributeError
1066 On attribute reference or assignment failure
1067 EnvironmentError [new in 1.5.2]
1068 On error outside Python; error arg tuple is (errno, errMsg...)
1069 IOError [changed in 1.5.2]
1070 I/O-related operation failure
1071 OSError [new in 1.5.2]
1072 used by the os module's os.error exception.
1073 EOFError
1074 Immediate end-of-file hit by input() or raw_input()
1075 ImportError
1076 On failure of `import' to find module or name
1077 KeyboardInterrupt
1078 On user entry of the interrupt key (often `Control-C')
1079 LookupError
1080 base class for IndexError, KeyError
1081 IndexError
1082 On out-of-range sequence subscript
1083 KeyError
1084 On reference to a non-existent mapping (dict) key
1085 MemoryError
1086 On recoverable memory exhaustion
1087 NameError
1088 On failure to find a local or global (unqualified) name
1089 RuntimeError
1090 Obsolete catch-all; define a suitable error instead
1091 NotImplementedError [new in 1.5.2]
1092 On method not implemented
1093 SyntaxError
1094 On parser encountering a syntax error
1095 IndentationError
1096 On parser encountering an indentation syntax error
1097 TabError
1098 On parser encountering an indentation syntax error
1099 SystemError
1100 On non-fatal interpreter error - bug - report it
1101 TypeError
1102 On passing inappropriate type to built-in op or func
1103 ValueError
1104 On arg error not covered by TypeError or more precise
Raymond Hettingere685f942003-01-26 03:29:15 +00001105 Warning
1106 UserWarning
1107 DeprecationWarning
1108 PendingDeprecationWarning
1109 SyntaxWarning
Raymond Hettingere685f942003-01-26 03:29:15 +00001110 RuntimeWarning
1111 FutureWarning
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001112
1113
1114
1115Standard methods & operators redefinition in classes
1116
1117Standard methods & operators map to special '__methods__' and thus may be
1118 redefined (mostly in in user-defined classes), e.g.:
1119 class x:
1120 def __init__(self, v): self.value = v
1121 def __add__(self, r): return self.value + r
1122 a = x(3) # sort of like calling x.__init__(a, 3)
1123 a + 4 # is equivalent to a.__add__(4)
1124
1125Special methods for any class
1126
1127(s: self, o: other)
1128 __init__(s, args) instance initialization (on construction)
1129 __del__(s) called on object demise (refcount becomes 0)
1130 __repr__(s) repr() and `...` conversions
1131 __str__(s) str() and 'print' statement
1132 __cmp__(s, o) Compares s to o and returns <0, 0, or >0.
1133 Implements >, <, == etc...
1134 __hash__(s) Compute a 32 bit hash code; hash() and dictionary ops
Jack Diederich62971282006-11-30 20:50:23 +00001135 __bool__(s) Returns False or True for truth value testing
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001136 __getattr__(s, name) called when attr lookup doesn't find <name>
1137 __setattr__(s, name, val) called when setting an attr
1138 (inside, don't use "self.name = value"
1139 use "self.__dict__[name] = val")
1140 __delattr__(s, name) called to delete attr <name>
1141 __call__(self, *args) called when an instance is called as function.
1142
1143Operators
1144
1145 See list in the operator module. Operator function names are provided with
1146 2 variants, with or without
1147 ading & trailing '__' (eg. __add__ or add).
1148
1149 Numeric operations special methods
1150 (s: self, o: other)
1151
1152 s+o = __add__(s,o) s-o = __sub__(s,o)
1153 s*o = __mul__(s,o) s/o = __div__(s,o)
1154 s%o = __mod__(s,o) divmod(s,o) = __divmod__(s,o)
1155 s**o = __pow__(s,o)
1156 s&o = __and__(s,o)
1157 s^o = __xor__(s,o) s|o = __or__(s,o)
1158 s<<o = __lshift__(s,o) s>>o = __rshift__(s,o)
Jack Diederich62971282006-11-30 20:50:23 +00001159 bool(s) = __bool__(s) (used in boolean testing)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001160 -s = __neg__(s) +s = __pos__(s)
1161 abs(s) = __abs__(s) ~s = __invert__(s) (bitwise)
1162 s+=o = __iadd__(s,o) s-=o = __isub__(s,o)
1163 s*=o = __imul__(s,o) s/=o = __idiv__(s,o)
1164 s%=o = __imod__(s,o)
1165 s**=o = __ipow__(s,o)
1166 s&=o = __iand__(s,o)
1167 s^=o = __ixor__(s,o) s|=o = __ior__(s,o)
1168 s<<=o = __ilshift__(s,o) s>>=o = __irshift__(s,o)
1169 Conversions
1170 int(s) = __int__(s) long(s) = __long__(s)
1171 float(s) = __float__(s) complex(s) = __complex__(s)
1172 oct(s) = __oct__(s) hex(s) = __hex__(s)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001173 Right-hand-side equivalents for all binary operators exist;
1174 are called when class instance is on r-h-s of operator:
1175 a + 3 calls __add__(a, 3)
1176 3 + a calls __radd__(a, 3)
1177
1178 All seqs and maps, general operations plus:
1179 (s: self, i: index or key)
1180
1181 len(s) = __len__(s) length of object, >= 0. Length 0 == false
1182 s[i] = __getitem__(s,i) Element at index/key i, origin 0
1183
1184 Sequences, general methods, plus:
1185 s[i]=v = __setitem__(s,i,v)
1186 del s[i] = __delitem__(s,i)
1187 s[i:j] = __getslice__(s,i,j)
1188 s[i:j]=seq = __setslice__(s,i,j,seq)
1189 del s[i:j] = __delslice__(s,i,j) == s[i:j] = []
1190 seq * n = __repeat__(seq, n)
1191 s1 + s2 = __concat__(s1, s2)
1192 i in s = __contains__(s, i)
1193 Mappings, general methods, plus
1194 hash(s) = __hash__(s) - hash value for dictionary references
1195 s[k]=v = __setitem__(s,k,v)
1196 del s[k] = __delitem__(s,k)
1197
1198Special informative state attributes for some types:
1199
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001200 Modules:
1201 __doc__ (string/None, R/O): doc string (<=> __dict__['__doc__'])
1202 __name__(string, R/O): module name (also in __dict__['__name__'])
1203 __dict__ (dict, R/O): module's name space
1204 __file__(string/undefined, R/O): pathname of .pyc, .pyo or .pyd (undef for
1205 modules statically linked to the interpreter)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001206
1207 Classes: [in bold: writable since 1.5.2]
1208 __doc__ (string/None, R/W): doc string (<=> __dict__['__doc__'])
Raymond Hettingere685f942003-01-26 03:29:15 +00001209 __module__ is the module name in which the class was defined
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001210 __name__(string, R/W): class name (also in __dict__['__name__'])
1211 __bases__ (tuple, R/W): parent classes
1212 __dict__ (dict, R/W): attributes (class name space)
1213
1214 Instances:
1215 __class__ (class, R/W): instance's class
1216 __dict__ (dict, R/W): attributes
Raymond Hettingere685f942003-01-26 03:29:15 +00001217
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001218 User-defined functions: [bold: writable since 1.5.2]
1219 __doc__ (string/None, R/W): doc string
1220 __name__(string, R/O): function name
1221 func_doc (R/W): same as __doc__
1222 func_name (R/O): same as __name__
1223 func_defaults (tuple/None, R/W): default args values if any
1224 func_code (code, R/W): code object representing the compiled function body
1225 func_globals (dict, R/O): ref to dictionary of func global variables
Raymond Hettingere685f942003-01-26 03:29:15 +00001226 func_dict (dict, R/W): same as __dict__ contains the namespace supporting
1227 arbitrary function attributes
1228 func_closure (R/O): None or a tuple of cells that contain bindings
1229 for the function's free variables.
1230
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001231
1232 User-defined Methods:
1233 __doc__ (string/None, R/O): doc string
1234 __name__(string, R/O): method name (same as im_func.__name__)
1235 im_class (class, R/O): class defining the method (may be a base class)
1236 im_self (instance/None, R/O): target instance object (None if unbound)
1237 im_func (function, R/O): function object
Raymond Hettingere685f942003-01-26 03:29:15 +00001238
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001239 Built-in Functions & methods:
1240 __doc__ (string/None, R/O): doc string
1241 __name__ (string, R/O): function name
1242 __self__ : [methods only] target object
Raymond Hettingere685f942003-01-26 03:29:15 +00001243
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001244 Codes:
1245 co_name (string, R/O): function name
1246 co_argcount (int, R/0): number of positional args
1247 co_nlocals (int, R/O): number of local vars (including args)
1248 co_varnames (tuple, R/O): names of local vars (starting with args)
Raymond Hettingere685f942003-01-26 03:29:15 +00001249 co_cellvars (tuple, R/O)) the names of local variables referenced by
1250 nested functions
1251 co_freevars (tuple, R/O)) names of free variables
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001252 co_code (string, R/O): sequence of bytecode instructions
1253 co_consts (tuple, R/O): litterals used by the bytecode, 1st one is
1254 fct doc (or None)
1255 co_names (tuple, R/O): names used by the bytecode
1256 co_filename (string, R/O): filename from which the code was compiled
1257 co_firstlineno (int, R/O): first line number of the function
1258 co_lnotab (string, R/O): string encoding bytecode offsets to line numbers.
1259 co_stacksize (int, R/O): required stack size (including local vars)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001260 co_flags (int, R/O): flags for the interpreter
1261 bit 2 set if fct uses "*arg" syntax
1262 bit 3 set if fct uses '**keywords' syntax
1263 Frames:
1264 f_back (frame/None, R/O): previous stack frame (toward the caller)
1265 f_code (code, R/O): code object being executed in this frame
1266 f_locals (dict, R/O): local vars
1267 f_globals (dict, R/O): global vars
1268 f_builtins (dict, R/O): built-in (intrinsic) names
1269 f_restricted (int, R/O): flag indicating whether fct is executed in
1270 restricted mode
1271 f_lineno (int, R/O): current line number
1272 f_lasti (int, R/O): precise instruction (index into bytecode)
1273 f_trace (function/None, R/W): debug hook called at start of each source line
1274 f_exc_type (Type/None, R/W): Most recent exception type
1275 f_exc_value (any, R/W): Most recent exception value
1276 f_exc_traceback (traceback/None, R/W): Most recent exception traceback
1277 Tracebacks:
1278 tb_next (frame/None, R/O): next level in stack trace (toward the frame where
1279 the exception occurred)
1280 tb_frame (frame, R/O): execution frame of the current level
Fred Drakedb390c12005-10-28 14:39:47 +00001281 tb_lineno (int, R/O): line number where the exception occurred
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001282 tb_lasti (int, R/O): precise instruction (index into bytecode)
1283
1284 Slices:
1285 start (any/None, R/O): lowerbound
1286 stop (any/None, R/O): upperbound
1287 step (any/None, R/O): step value
1288
1289 Complex numbers:
1290 real (float, R/O): real part
1291 imag (float, R/O): imaginary part
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001292
1293
1294Important Modules
1295
1296 sys
1297
1298 Some sys variables
1299 Variable Content
1300argv The list of command line arguments passed to aPython
1301 script. sys.argv[0] is the script name.
1302builtin_module_names A list of strings giving the names of all moduleswritten
1303 in C that are linked into this interpreter.
1304check_interval How often to check for thread switches or signals(measured
1305 in number of virtual machine instructions)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001306last_type, Set only when an exception not handled andinterpreter
1307last_value, prints an error. Used by debuggers.
1308last_traceback
1309maxint maximum positive value for integers
1310modules Dictionary of modules that have already been loaded.
1311path Search path for external modules. Can be modifiedby
1312 program. sys.path[0] == dir of script executing
1313platform The current platform, e.g. "sunos5", "win32"
1314ps1, ps2 prompts to use in interactive mode.
1315 File objects used for I/O. One can redirect byassigning a
1316stdin, stdout, new file object to them (or any object:.with a method
1317stderr write(string) for stdout/stderr,.with a method readline()
1318 for stdin)
1319version string containing version info about Python interpreter.
1320 (and also: copyright, dllhandle, exec_prefix, prefix)
1321version_info tuple containing Python version info - (major, minor,
1322 micro, level, serial).
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001323
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001324 Some sys functions
1325 Function Result
1326exit(n) Exits with status n. Raises SystemExit exception.(Hence can
1327 be caught and ignored by program)
Raymond Hettingere685f942003-01-26 03:29:15 +00001328getrefcount(object Returns the reference count of the object. Generally one
1329) higher than you might expect, because of object arg temp
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001330 reference.
1331setcheckinterval( Sets the interpreter's thread switching interval (in number
Skip Montanaroeec26f92003-07-02 21:38:34 +00001332interval) of virtual code instructions, default:100).
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001333settrace(func) Sets a trace function: called before each line ofcode is
1334 exited.
1335setprofile(func) Sets a profile function for performance profiling.
1336 Info on exception currently being handled; this is atuple
1337 (exc_type, exc_value, exc_traceback).Warning: assigning the
Guido van Rossume7ba4952007-06-06 23:52:48 +00001338exc_info() traceback return value to a local variable in a
Raymond Hettingere685f942003-01-26 03:29:15 +00001339 function handling an exception will cause a circular
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001340 reference.
1341setdefaultencoding Change default Unicode encoding - defaults to 7-bit ASCII.
1342(encoding)
1343getrecursionlimit Retrieve maximum recursion depth.
1344()
1345setrecursionlimit Set maximum recursion depth. (Defaults to 1000.)
1346()
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001347
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001348
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001349
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001350 os
1351"synonym" for whatever O/S-specific module is proper for current environment.
1352this module uses posix whenever possible.
1353(see also M.A. Lemburg's utility http://www.lemburg.com/files/python/
1354platform.py)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001355
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001356 Some os variables
1357 Variable Meaning
1358name name of O/S-specific module (e.g. "posix", "mac", "nt")
1359path O/S-specific module for path manipulations.
1360 On Unix, os.path.split() <=> posixpath.split()
1361curdir string used to represent current directory ('.')
1362pardir string used to represent parent directory ('..')
1363sep string used to separate directories ('/' or '\'). Tip: use
1364 os.path.join() to build portable paths.
1365altsep Alternate sep
1366if applicable (None
1367otherwise)
1368pathsep character used to separate search path components (as in
1369 $PATH), eg. ';' for windows.
1370linesep line separator as used in binary files, ie '\n' on Unix, '\
1371 r\n' on Dos/Win, '\r'
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001372
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001373 Some os functions
1374 Function Result
1375makedirs(path[, Recursive directory creation (create required intermediary
1376mode=0777]) dirs); os.error if fails.
1377removedirs(path) Recursive directory delete (delete intermediary empty
1378 dirs); if fails.
1379renames(old, new) Recursive directory or file renaming; os.error if fails.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001380
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001381
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001382
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001383 posix
1384don't import this module directly, import os instead !
1385(see also module: shutil for file copy & remove fcts)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001386
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001387 posix Variables
1388Variable Meaning
1389environ dictionary of environment variables, e.g.posix.environ['HOME'].
1390error exception raised on POSIX-related error.
1391 Corresponding value is tuple of errno code and perror() string.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001392
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001393 Some posix functions
1394 Function Result
1395chdir(path) Changes current directory to path.
1396chmod(path, Changes the mode of path to the numeric mode
1397mode)
1398close(fd) Closes file descriptor fd opened with posix.open.
1399_exit(n) Immediate exit, with no cleanups, no SystemExit,etc. Should use
1400 this to exit a child process.
1401execv(p, args) "Become" executable p with args args
1402getcwd() Returns a string representing the current working directory
1403getpid() Returns the current process id
1404fork() Like C's fork(). Returns 0 to child, child pid to parent.[Not
1405 on Windows]
1406kill(pid, Like C's kill [Not on Windows]
1407signal)
1408listdir(path) Lists (base)names of entries in directory path, excluding '.'
1409 and '..'
1410lseek(fd, pos, Sets current position in file fd to position pos, expressedas
1411how) an offset relative to beginning of file (how=0), tocurrent
1412 position (how=1), or to end of file (how=2)
1413mkdir(path[, Creates a directory named path with numeric mode (default 0777)
1414mode])
1415open(file, Like C's open(). Returns file descriptor. Use file object
1416flags, mode) fctsrather than this low level ones.
1417pipe() Creates a pipe. Returns pair of file descriptors (r, w) [Not on
1418 Windows].
1419popen(command, Opens a pipe to or from command. Result is a file object to
1420mode='r', read to orwrite from, as indicated by mode being 'r' or 'w'.
1421bufSize=0) Use it to catch acommand output ('r' mode) or to feed it ('w'
1422 mode).
1423remove(path) See unlink.
1424rename(src, dst Renames/moves the file or directory src to dst. [error iftarget
1425) name already exists]
1426rmdir(path) Removes the empty directory path
1427read(fd, n) Reads n bytes from file descriptor fd and return as string.
1428 Returns st_mode, st_ino, st_dev, st_nlink, st_uid,st_gid,
1429stat(path) st_size, st_atime, st_mtime, st_ctime.[st_ino, st_uid, st_gid
1430 are dummy on Windows]
1431system(command) Executes string command in a subshell. Returns exitstatus of
1432 subshell (usually 0 means OK).
1433 Returns accumulated CPU times in sec (user, system, children's
1434times() user,children's sys, elapsed real time). [3 last not on
1435 Windows]
1436unlink(path) Unlinks ("deletes") the file (not dir!) path. same as: remove
1437utime(path, ( Sets the access & modified time of the file to the given tuple
1438aTime, mTime)) of values.
1439wait() Waits for child process completion. Returns tuple ofpid,
1440 exit_status [Not on Windows]
1441waitpid(pid, Waits for process pid to complete. Returns tuple ofpid,
1442options) exit_status [Not on Windows]
1443write(fd, str) Writes str to file fd. Returns nb of bytes written.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001444
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001445
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001446
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001447 posixpath
1448Do not import this module directly, import os instead and refer to this module
1449as os.path. (e.g. os.path.exists(p)) !
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001450
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001451 Some posixpath functions
1452 Function Result
1453abspath(p) Returns absolute path for path p, taking current working dir in
1454 account.
1455dirname/
1456basename(p directory and name parts of the path p. See also split.
1457)
1458exists(p) True if string p is an existing path (file or directory)
1459expanduser Returns string that is (a copy of) p with "~" expansion done.
1460(p)
1461expandvars Returns string that is (a copy of) p with environment vars expanded.
1462(p) [Windows: case significant; must use Unix: $var notation, not %var%]
1463getsize( return the size in bytes of filename. raise os.error.
1464filename)
1465getmtime( return last modification time of filename (integer nb of seconds
1466filename) since epoch).
1467getatime( return last access time of filename (integer nb of seconds since
1468filename) epoch).
1469isabs(p) True if string p is an absolute path.
1470isdir(p) True if string p is a directory.
1471islink(p) True if string p is a symbolic link.
1472ismount(p) True if string p is a mount point [true for all dirs on Windows].
1473join(p[,q Joins one or more path components intelligently.
1474[,...]])
1475 Splits p into (head, tail) where tail is lastpathname component and
1476split(p) <head> is everything leadingup to that. <=> (dirname(p), basename
1477 (p))
1478splitdrive Splits path p in a pair ('drive:', tail) [Windows]
1479(p)
1480splitext(p Splits into (root, ext) where last comp of root contains no periods
1481) and ext is empty or startswith a period.
1482 Calls the function visit with arguments(arg, dirname, names) for
1483 each directory recursively inthe directory tree rooted at p
1484walk(p, (including p itself if it's a dir)The argument dirname specifies the
1485visit, arg visited directory, the argumentnames lists the files in the
1486) directory. The visit function maymodify names to influence the set
1487 of directories visited belowdirname, e.g., to avoid visiting certain
1488 parts of the tree.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001489
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001490
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001491
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001492 shutil
1493high-level file operations (copying, deleting).
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001494
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001495 Main shutil functions
1496 Function Result
1497copy(src, dst) Copies the contents of file src to file dst, retaining file
1498 permissions.
1499copytree(src, dst Recursively copies an entire directory tree rooted at src
1500[, symlinks]) into dst (which should not already exist). If symlinks is
1501 true, links insrc are kept as such in dst.
1502rmtree(path[, Deletes an entire directory tree, ignoring errors if
1503ignore_errors[, ignore_errors true,or calling onerror(func, path,
1504onerror]]) sys.exc_info()) if supplied with
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001505
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001506(and also: copyfile, copymode, copystat, copy2)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001507
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001508time
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001509
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001510 Variables
1511Variable Meaning
1512altzone signed offset of local DST timezone in sec west of the 0th meridian.
1513daylight nonzero if a DST timezone is specified
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001514
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001515 Functions
1516 Function Result
1517time() return a float representing UTC time in seconds since the epoch.
1518gmtime(secs), return a tuple representing time : (year aaaa, month(1-12),day
1519localtime( (1-31), hour(0-23), minute(0-59), second(0-59), weekday(0-6, 0 is
1520secs) monday), Julian day(1-366), daylight flag(-1,0 or 1))
1521asctime(
1522timeTuple),
1523strftime(
1524format, return a formated string representing time.
1525timeTuple)
1526mktime(tuple) inverse of localtime(). Return a float.
1527strptime( parse a formated string representing time, return tuple as in
1528string[, gmtime().
1529format])
1530sleep(secs) Suspend execution for <secs> seconds. <secs> can be a float.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001531
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001532and also: clock, ctime.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001533
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001534 string
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001535
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001536As of Python 2.0, much (though not all) of the functionality provided by the
1537string module have been superseded by built-in string methods - see Operations
1538on strings for details.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001539
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001540 Some string variables
1541 Variable Meaning
1542digits The string '0123456789'
1543hexdigits, octdigits legal hexadecimal & octal digits
1544letters, uppercase, lowercase, Strings containing the appropriate
1545whitespace characters
1546index_error Exception raised by index() if substr not
1547 found.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001548
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001549 Some string functions
1550 Function Result
1551expandtabs(s, returns a copy of string <s> with tabs expanded.
1552tabSize)
1553find/rfind(s, sub Return the lowest/highest index in <s> where the substring
1554[, start=0[, end= <sub> is found such that <sub> is wholly contained ins
15550]) [start:end]. Return -1 if <sub> not found.
1556ljust/rjust/center Return a copy of string <s> left/right justified/centerd in
1557(s, width) afield of given width, padded with spaces. <s> is
1558 nevertruncated.
1559lower/upper(s) Return a string that is (a copy of) <s> in lowercase/
1560 uppercase
1561split(s[, sep= Return a list containing the words of the string <s>,using
1562whitespace[, the string <sep> as a separator.
1563maxsplit=0]])
1564join(words[, sep=' Concatenate a list or tuple of words with
1565']) interveningseparators; inverse of split.
Fred Drakedb390c12005-10-28 14:39:47 +00001566replace(s, old, Returns a copy of string <s> with all occurrences of
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001567new[, maxsplit=0] substring<old> replaced by <new>. Limits to <maxsplit>
1568 firstsubstitutions if specified.
1569strip(s) Return a string that is (a copy of) <s> without leadingand
1570 trailing whitespace. see also lstrip, rstrip.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001571
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001572
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001573
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001574 re (sre)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001575
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001576Handles Unicode strings. Implemented in new module sre, re now a mere front-end
1577for compatibility.
1578Patterns are specified as strings. Tip: Use raw strings (e.g. r'\w*') to
1579litteralize backslashes.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001580
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001581
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001582 Regular expression syntax
1583 Form Description
1584. matches any character (including newline if DOTALL flag specified)
1585^ matches start of the string (of every line in MULTILINE mode)
1586$ matches end of the string (of every line in MULTILINE mode)
1587* 0 or more of preceding regular expression (as many as possible)
1588+ 1 or more of preceding regular expression (as many as possible)
Fred Drakedb390c12005-10-28 14:39:47 +00001589? 0 or 1 occurrence of preceding regular expression
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001590*?, +?, ?? Same as *, + and ? but matches as few characters as possible
1591{m,n} matches from m to n repetitions of preceding RE
1592{m,n}? idem, attempting to match as few repetitions as possible
1593[ ] defines character set: e.g. '[a-zA-Z]' to match all letters(see also
1594 \w \S)
1595[^ ] defines complemented character set: matches if char is NOT in set
1596 escapes special chars '*?+&$|()' and introduces special sequences
1597\ (see below). Due to Python string rules, write as '\\' orr'\' in the
1598 pattern string.
1599\\ matches a litteral '\'; due to Python string rules, write as '\\\\
1600 'in pattern string, or better using raw string: r'\\'.
1601| specifies alternative: 'foo|bar' matches 'foo' or 'bar'
1602(...) matches any RE inside (), and delimits a group.
1603(?:...) idem but doesn't delimit a group.
1604 matches if ... matches next, but doesn't consume any of the string
1605(?=...) e.g. 'Isaac (?=Asimov)' matches 'Isaac' only if followed by
1606 'Asimov'.
1607(?!...) matches if ... doesn't match next. Negative of (?=...)
1608(?P<name matches any RE inside (), and delimits a named group. (e.g. r'(?P
1609>...) <id>[a-zA-Z_]\w*)' defines a group named id)
1610(?P=name) matches whatever text was matched by the earlier group named name.
1611(?#...) A comment; ignored.
1612(?letter) letter is one of 'i','L', 'm', 's', 'x'. Set the corresponding flags
1613 (re.I, re.L, re.M, re.S, re.X) for the entire RE.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001614
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001615 Special sequences
1616Sequence Description
1617number matches content of the group of the same number; groups are numbered
1618 starting from 1
1619\A matches only at the start of the string
1620\b empty str at beg or end of word: '\bis\b' matches 'is', but not 'his'
1621\B empty str NOT at beginning or end of word
1622\d any decimal digit (<=> [0-9])
1623\D any non-decimal digit char (<=> [^O-9])
1624\s any whitespace char (<=> [ \t\n\r\f\v])
1625\S any non-whitespace char (<=> [^ \t\n\r\f\v])
1626\w any alphaNumeric char (depends on LOCALE flag)
1627\W any non-alphaNumeric char (depends on LOCALE flag)
1628\Z matches only at the end of the string
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001629
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001630 Variables
1631Variable Meaning
1632error Exception when pattern string isn't a valid regexp.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001633
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001634 Functions
1635 Function Result
1636 Compile a RE pattern string into a regular expression object.
1637 Flags (combinable by |):
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001638
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001639 I or IGNORECASE or (?i)
1640 case insensitive matching
1641compile( L or LOCALE or (?L)
1642pattern[, make \w, \W, \b, \B dependent on thecurrent locale
1643flags=0]) M or MULTILINE or (?m)
1644 matches every new line and not onlystart/end of the whole
1645 string
1646 S or DOTALL or (?s)
1647 '.' matches ALL chars, including newline
1648 X or VERBOSE or (?x)
1649 Ignores whitespace outside character sets
1650escape(string) return (a copy of) string with all non-alphanumerics
1651 backslashed.
1652match(pattern, if 0 or more chars at beginning of <string> match the RE pattern
1653string[, flags string,return a corresponding MatchObject instance, or None if
1654]) no match.
1655search(pattern scan thru <string> for a location matching <pattern>, return
1656, string[, acorresponding MatchObject instance, or None if no match.
1657flags])
1658split(pattern, split <string> by occurrences of <pattern>. If capturing () are
1659string[, used inpattern, then occurrences of patterns or subpatterns are
1660maxsplit=0]) also returned.
1661findall( return a list of non-overlapping matches in <pattern>, either a
1662pattern, list ofgroups or a list of tuples if the pattern has more than 1
1663string) group.
1664 return string obtained by replacing the (<count> first) lefmost
1665sub(pattern, non-overlapping occurrences of <pattern> (a string or a RE
1666repl, string[, object) in <string>by <repl>; <repl> can be a string or a fct
1667count=0]) called with a single MatchObj arg, which must return the
1668 replacement string.
1669subn(pattern,
1670repl, string[, same as sub(), but returns a tuple (newString, numberOfSubsMade)
1671count=0])
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001672
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001673Regular Expression Objects
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001674
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001675
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001676(RE objects are returned by the compile fct)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001677
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001678 re object attributes
1679Attribute Descrition
1680flags flags arg used when RE obj was compiled, or 0 if none provided
1681groupindex dictionary of {group name: group number} in pattern
1682pattern pattern string from which RE obj was compiled
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001683
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001684 re object methods
1685 Method Result
1686 If zero or more characters at the beginning of string match this
1687 regular expression, return a corresponding MatchObject instance.
1688 Return None if the string does not match the pattern; note that
1689 this is different from a zero-length match.
1690 The optional second parameter pos gives an index in the string
1691match( where the search is to start; it defaults to 0. This is not
1692string[, completely equivalent to slicing the string; the '' pattern
1693pos][, character matches at the real beginning of the string and at
1694endpos]) positions just after a newline, but not necessarily at the index
1695 where the search is to start.
1696 The optional parameter endpos limits how far the string will be
1697 searched; it will be as if the string is endpos characters long, so
1698 only the characters from pos to endpos will be searched for a
1699 match.
1700 Scan through string looking for a location where this regular
1701search( expression produces a match, and return a corresponding MatchObject
1702string[, instance. Return None if no position in the string matches the
1703pos][, pattern; note that this is different from finding a zero-length
1704endpos]) match at some point in the string.
1705 The optional pos and endpos parameters have the same meaning as for
1706 the match() method.
1707split(
1708string[, Identical to the split() function, using the compiled pattern.
1709maxsplit=
17100])
1711findall( Identical to the findall() function, using the compiled pattern.
1712string)
1713sub(repl,
1714string[, Identical to the sub() function, using the compiled pattern.
1715count=0])
1716subn(repl,
1717string[, Identical to the subn() function, using the compiled pattern.
1718count=0])
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001719
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001720Match Objects
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001721
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001722
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001723(Match objects are returned by the match & search functions)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001724
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001725 Match object attributes
1726Attribute Description
1727pos value of pos passed to search or match functions; index intostring at
1728 which RE engine started search.
1729endpos value of endpos passed to search or match functions; index intostring
1730 beyond which RE engine won't go.
1731re RE object whose match or search fct produced this MatchObj instance
1732string string passed to match() or search()
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001733
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001734 Match object functions
1735Function Result
1736 returns one or more groups of the match. If one arg, result is a
1737group([g1 string;if multiple args, result is a tuple with one item per arg. If
1738, g2, gi is 0,return value is entire matching string; if 1 <= gi <= 99,
1739...]) returnstring matching group #gi (or None if no such group); gi may
1740 also bea group name.
1741 returns a tuple of all groups of the match; groups not
1742groups() participatingto the match have a value of None. Returns a string
1743 instead of tupleif len(tuple)=1
1744start(
1745group), returns indices of start & end of substring matched by group (or
1746end(group Noneif group exists but doesn't contribute to the match)
1747)
1748span( returns the 2-tuple (start(group), end(group)); can be (None, None)if
1749group) group didn't contibute to the match.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001750
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001751
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001752
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001753 math
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001754
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001755Variables:
1756pi
1757e
1758Functions (see ordinary C man pages for info):
1759acos(x)
1760asin(x)
1761atan(x)
1762atan2(x, y)
1763ceil(x)
1764cos(x)
1765cosh(x)
Raymond Hettingere685f942003-01-26 03:29:15 +00001766degrees(x)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001767exp(x)
1768fabs(x)
1769floor(x)
1770fmod(x, y)
1771frexp(x) -- Unlike C: (float, int) = frexp(float)
1772ldexp(x, y)
Raymond Hettingere685f942003-01-26 03:29:15 +00001773log(x [,base])
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001774log10(x)
1775modf(x) -- Unlike C: (float, float) = modf(float)
1776pow(x, y)
Raymond Hettingere685f942003-01-26 03:29:15 +00001777radians(x)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001778sin(x)
1779sinh(x)
1780sqrt(x)
1781tan(x)
1782tanh(x)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001783
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001784 getopt
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001785
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001786Functions:
1787getopt(list, optstr) -- Similar to C. <optstr> is option
1788 letters to look for. Put ':' after letter
1789 if option takes arg. E.g.
1790 # invocation was "python test.py -c hi -a arg1 arg2"
1791 opts, args = getopt.getopt(sys.argv[1:], 'ab:c:')
1792 # opts would be
1793 [('-c', 'hi'), ('-a', '')]
1794 # args would be
1795 ['arg1', 'arg2']
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001796
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001797
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001798List of modules and packages in base distribution
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001799
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001800(built-ins and content of python Lib directory)
1801(Python NT distribution, may be slightly different in other distributions)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001802
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001803 Standard library modules
1804 Operation Result
1805aifc Stuff to parse AIFF-C and AIFF files.
1806anydbm Generic interface to all dbm clones. (dbhash, gdbm,
1807 dbm,dumbdbm)
1808asynchat Support for 'chat' style protocols
1809asyncore Asynchronous File I/O (in select style)
1810atexit Register functions to be called at exit of Python interpreter.
1811audiodev Audio support for a few platforms.
1812base64 Conversions to/from base64 RFC-MIME transport encoding .
1813BaseHTTPServer Base class forhttp services.
1814Bastion "Bastionification" utility (control access to instance vars)
1815bdb A generic Python debugger base class.
1816binhex Macintosh binhex compression/decompression.
1817bisect List bisection algorithms.
Raymond Hettingere685f942003-01-26 03:29:15 +00001818bz2 Support for bz2 compression/decompression.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001819calendar Calendar printing functions.
1820cgi Wraps the WWW Forms Common Gateway Interface (CGI).
Raymond Hettingere685f942003-01-26 03:29:15 +00001821cgitb Utility for handling CGI tracebacks.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001822CGIHTTPServer CGI http services.
1823cmd A generic class to build line-oriented command interpreters.
Raymond Hettingere685f942003-01-26 03:29:15 +00001824datetime Basic date and time types.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001825code Utilities needed to emulate Python's interactive interpreter
1826codecs Lookup existing Unicode encodings and register new ones.
1827colorsys Conversion functions between RGB and other color systems.
1828commands Tools for executing UNIX commands .
1829compileall Force "compilation" of all .py files in a directory.
1830ConfigParser Configuration file parser (much like windows .ini files)
1831copy Generic shallow and deep copying operations.
1832copy_reg Helper to provide extensibility for pickle/cPickle.
Raymond Hettingerca60cac2003-07-12 23:55:57 +00001833csv Read and write files with comma separated values.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001834dbhash (g)dbm-compatible interface to bsdhash.hashopen.
1835dircache Sorted list of files in a dir, using a cache.
1836[DEL:dircmp:DEL] [DEL:Defines a class to build directory diff tools on.:DEL]
Raymond Hettingere685f942003-01-26 03:29:15 +00001837difflib Tool for creating delta between sequences.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001838dis Bytecode disassembler.
1839distutils Package installation system.
Raymond Hettingere685f942003-01-26 03:29:15 +00001840doctest Tool for running and verifying tests inside doc strings.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001841dospath Common operations on DOS pathnames.
1842dumbdbm A dumb and slow but simple dbm clone.
1843[DEL:dump:DEL] [DEL:Print python code that reconstructs a variable.:DEL]
Raymond Hettingere685f942003-01-26 03:29:15 +00001844email Comprehensive support for internet email.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001845filecmp File comparison.
1846fileinput Helper class to quickly write a loop over all standard input
1847 files.
1848[DEL:find:DEL] [DEL:Find files directory hierarchy matching a pattern.:DEL]
1849fnmatch Filename matching with shell patterns.
1850formatter A test formatter.
1851fpformat General floating point formatting functions.
1852ftplib An FTP client class. Based on RFC 959.
1853gc Perform garbacge collection, obtain GC debug stats, and tune
1854 GC parameters.
1855getopt Standard command line processing. See also ftp://
1856 www.pauahtun.org/pub/getargspy.zip
1857getpass Utilities to get a password and/or the current user name.
1858glob filename globbing.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001859[DEL:grep:DEL] [DEL:'grep' utilities.:DEL]
1860gzip Read & write gzipped files.
Raymond Hettingere685f942003-01-26 03:29:15 +00001861heapq Priority queue implemented using lists organized as heaps.
1862HMAC Keyed-Hashing for Message Authentication -- RFC 2104.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001863htmlentitydefs Proposed entity definitions for HTML.
1864htmllib HTML parsing utilities.
Raymond Hettingere685f942003-01-26 03:29:15 +00001865HTMLParser A parser for HTML and XHTML.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001866httplib HTTP client class.
1867ihooks Hooks into the "import" mechanism.
1868imaplib IMAP4 client.Based on RFC 2060.
1869imghdr Recognizing image files based on their first few bytes.
1870imputil Privides a way of writing customised import hooks.
Raymond Hettingere685f942003-01-26 03:29:15 +00001871inspect Tool for probing live Python objects.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001872keyword List of Python keywords.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001873linecache Cache lines from files.
1874linuxaudiodev Lunix /dev/audio support.
1875locale Support for number formatting using the current locale
1876 settings.
Raymond Hettingere685f942003-01-26 03:29:15 +00001877logging Python logging facility.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001878macpath Pathname (or related) operations for the Macintosh.
1879macurl2path Mac specific module for conversion between pathnames and URLs.
1880mailbox A class to handle a unix-style or mmdf-style mailbox.
1881mailcap Mailcap file handling (RFC 1524).
1882mhlib MH (mailbox) interface.
1883mimetools Various tools used by MIME-reading or MIME-writing programs.
1884mimetypes Guess the MIME type of a file.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001885mmap Interface to memory-mapped files - they behave like mutable
1886 strings./font>
1887multifile Class to make multi-file messages easier to handle.
1888mutex Mutual exclusion -- for use with module sched.
1889netrc
1890nntplib An NNTP client class. Based on RFC 977.
1891ntpath Common operations on DOS pathnames.
1892nturl2path Mac specific module for conversion between pathnames and URLs.
Raymond Hettingere685f942003-01-26 03:29:15 +00001893optparse A comprehensive tool for processing command line options.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001894os Either mac, dos or posix depending system.
1895[DEL:packmail: [DEL:Create a self-unpacking shell archive.:DEL]
1896DEL]
1897pdb A Python debugger.
1898pickle Pickling (save and restore) of Python objects (a faster
1899 Cimplementation exists in built-in module: cPickle).
1900pipes Conversion pipeline templates.
Raymond Hettingere685f942003-01-26 03:29:15 +00001901pkgunil Utilities for working with Python packages.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001902poplib A POP3 client class. Based on the J. Myers POP3 draft.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001903posixpath Common operations on POSIX pathnames.
1904pprint Support to pretty-print lists, tuples, & dictionaries
1905 recursively.
1906profile Class for profiling python code.
1907pstats Class for printing reports on profiled python code.
Raymond Hettingere685f942003-01-26 03:29:15 +00001908pydoc Utility for generating documentation from source files.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001909pty Pseudo terminal utilities.
1910pyexpat Interface to the Expay XML parser.
1911py_compile Routine to "compile" a .py file to a .pyc file.
1912pyclbr Parse a Python file and retrieve classes and methods.
1913Queue A multi-producer, multi-consumer queue.
1914quopri Conversions to/from quoted-printable transport encoding.
Raymond Hettinger5a772d32003-01-25 22:35:42 +00001915random Random variable generators
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001916re Regular Expressions.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001917repr Redo repr() but with limits on most sizes.
1918rexec Restricted execution facilities ("safe" exec, eval, etc).
1919rfc822 RFC-822 message manipulation class.
1920rlcompleter Word completion for GNU readline 2.0.
Raymond Hettinger2d95f1a2004-03-13 20:27:23 +00001921robotparser Parse robots.txt files, useful for web spiders.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001922sched A generally useful event scheduler class.
1923sgmllib A parser for SGML.
1924shelve Manage shelves of pickled objects.
1925shlex Lexical analyzer class for simple shell-like syntaxes.
1926shutil Utility functions usable in a shell-like program.
1927SimpleHTTPServer Simple extension to base http class
1928site Append module search paths for third-party packages to
1929 sys.path.
1930smtplib SMTP Client class (RFC 821)
1931sndhdr Several routines that help recognizing sound.
1932SocketServer Generic socket server classes.
1933stat Constants and functions for interpreting stat/lstat struct.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001934statvfs Constants for interpreting statvfs struct as returned by
1935 os.statvfs()and os.fstatvfs() (if they exist).
1936string A collection of string operations.
1937StringIO File-like objects that read/write a string buffer (a fasterC
1938 implementation exists in built-in module: cStringIO).
1939sunau Stuff to parse Sun and NeXT audio files.
1940sunaudio Interpret sun audio headers.
1941symbol Non-terminal symbols of Python grammar (from "graminit.h").
1942tabnanny,/font> Check Python source for ambiguous indentation.
Raymond Hettingere685f942003-01-26 03:29:15 +00001943tarfile Facility for reading and writing to the *nix tarfile format.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001944telnetlib TELNET client class. Based on RFC 854.
1945tempfile Temporary file name allocation.
Raymond Hettingere685f942003-01-26 03:29:15 +00001946textwrap Object for wrapping and filling text.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001947threading Proposed new higher-level threading interfaces
1948threading_api (doc of the threading module)
1949toaiff Convert "arbitrary" sound files to AIFF files .
1950token Tokens (from "token.h").
1951tokenize Compiles a regular expression that recognizes Python tokens.
1952traceback Format and print Python stack traces.
1953tty Terminal utilities.
1954turtle LogoMation-like turtle graphics
1955types Define names for all type symbols in the std interpreter.
1956tzparse Parse a timezone specification.
1957unicodedata Interface to unicode properties.
1958urllib Open an arbitrary URL.
1959urlparse Parse URLs according to latest draft of standard.
1960user Hook to allow user-specified customization code to run.
1961UserDict A wrapper to allow subclassing of built-in dict class.
1962UserList A wrapper to allow subclassing of built-in list class.
1963UserString A wrapper to allow subclassing of built-in string class.
1964[DEL:util:DEL] [DEL:some useful functions that don't fit elsewhere !!:DEL]
1965uu UUencode/UUdecode.
Raymond Hettingere685f942003-01-26 03:29:15 +00001966unittest Utilities for implementing unit testing.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001967wave Stuff to parse WAVE files.
Raymond Hettingere685f942003-01-26 03:29:15 +00001968weakref Tools for creating and managing weakly referenced objects.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001969webbrowser Platform independent URL launcher.
1970[DEL:whatsound: [DEL:Several routines that help recognizing sound files.:DEL]
1971DEL]
1972whichdb Guess which db package to use to open a db file.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001973xdrlib Implements (a subset of) Sun XDR (eXternal Data
1974 Representation)
1975xmllib A parser for XML, using the derived class as static DTD.
1976xml.dom Classes for processing XML using the Document Object Model.
1977xml.sax Classes for processing XML using the SAX API.
Raymond Hettingere685f942003-01-26 03:29:15 +00001978xmlrpclib Support for remote procedure calls using XML.
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001979zipfile Read & write PK zipped files.
1980[DEL:zmod:DEL] [DEL:Demonstration of abstruse mathematical concepts.:DEL]
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001981
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001982
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001983
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001984* Built-ins *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001985
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001986 sys Interpreter state vars and functions
1987 __built-in__ Access to all built-in python identifiers
1988 __main__ Scope of the interpreters main program, script or stdin
1989 array Obj efficiently representing arrays of basic values
1990 math Math functions of C standard
Raymond Hettingere685f942003-01-26 03:29:15 +00001991 time Time-related functions (also the newer datetime module)
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001992 marshal Read and write some python values in binary format
1993 struct Convert between python values and C structs
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001994
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001995* Standard *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00001996
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00001997 getopt Parse cmd line args in sys.argv. A la UNIX 'getopt'.
1998 os A more portable interface to OS dependent functionality
1999 re Functions useful for working with regular expressions
2000 string Useful string and characters functions and exceptions
Raymond Hettingere685f942003-01-26 03:29:15 +00002001 random Mersenne Twister pseudo-random number generator
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002002 thread Low-level primitives for working with process threads
2003 threading idem, new recommanded interface.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002004
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002005* Unix/Posix *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002006
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002007 dbm Interface to Unix ndbm database library
2008 grp Interface to Unix group database
2009 posix OS functionality standardized by C and POSIX standards
2010 posixpath POSIX pathname functions
2011 pwd Access to the Unix password database
2012 select Access to Unix select multiplex file synchronization
2013 socket Access to BSD socket interface
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002014
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002015* Tk User-interface Toolkit *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002016
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002017 tkinter Main interface to Tk
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002018
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002019* Multimedia *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002020
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002021 audioop Useful operations on sound fragments
2022 imageop Useful operations on images
2023 jpeg Access to jpeg image compressor and decompressor
2024 rgbimg Access SGI imglib image files
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002025
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002026* Cryptographic Extensions *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002027
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002028 md5 Interface to RSA's MD5 message digest algorithm
Andrew M. Kuchling5a9618e2004-08-31 13:43:19 +00002029 sha Interface to the SHA message digest algorithm
Raymond Hettingere685f942003-01-26 03:29:15 +00002030 HMAC Keyed-Hashing for Message Authentication -- RFC 2104.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002031
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002032* SGI IRIX * (4 & 5)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002033
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002034 al SGI audio facilities
2035 AL al constants
2036 fl Interface to FORMS library
2037 FL fl constants
2038 flp Functions for form designer
2039 fm Access to font manager library
2040 gl Access to graphics library
2041 GL Constants for gl
2042 DEVICE More constants for gl
2043 imgfile Imglib image file interface
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002044
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002045* Suns *
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002046
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002047 sunaudiodev Access to sun audio interface
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002048
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002049
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002050Workspace exploration and idiom hints
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002051
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002052 dir(<module>) list functions, variables in <module>
2053 dir() get object keys, defaults to local name space
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002054 if __name__ == '__main__': main() invoke main if running as script
2055 map(None, lst1, lst2, ...) merge lists
2056 b = a[:] create copy of seq structure
2057 _ in interactive mode, is last value printed
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002058
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002059
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002060
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002061
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002062
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002063
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002064
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002065Python Mode for Emacs
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002066
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002067(Not revised, possibly not up to date)
2068Type C-c ? when in python-mode for extensive help.
2069INDENTATION
2070Primarily for entering new code:
2071 TAB indent line appropriately
2072 LFD insert newline, then indent
2073 DEL reduce indentation, or delete single character
2074Primarily for reindenting existing code:
2075 C-c : guess py-indent-offset from file content; change locally
2076 C-u C-c : ditto, but change globally
2077 C-c TAB reindent region to match its context
2078 C-c < shift region left by py-indent-offset
2079 C-c > shift region right by py-indent-offset
2080MARKING & MANIPULATING REGIONS OF CODE
2081C-c C-b mark block of lines
2082M-C-h mark smallest enclosing def
2083C-u M-C-h mark smallest enclosing class
2084C-c # comment out region of code
2085C-u C-c # uncomment region of code
2086MOVING POINT
2087C-c C-p move to statement preceding point
2088C-c C-n move to statement following point
2089C-c C-u move up to start of current block
2090M-C-a move to start of def
2091C-u M-C-a move to start of class
2092M-C-e move to end of def
2093C-u M-C-e move to end of class
2094EXECUTING PYTHON CODE
2095C-c C-c sends the entire buffer to the Python interpreter
2096C-c | sends the current region
2097C-c ! starts a Python interpreter window; this will be used by
2098 subsequent C-c C-c or C-c | commands
Raymond Hettingere685f942003-01-26 03:29:15 +00002099C-c C-w runs PyChecker
2100
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002101VARIABLES
2102py-indent-offset indentation increment
2103py-block-comment-prefix comment string used by py-comment-region
2104py-python-command shell command to invoke Python interpreter
2105py-scroll-process-buffer t means always scroll Python process buffer
2106py-temp-directory directory used for temp files (if needed)
2107py-beep-if-tab-change ring the bell if tab-width is changed
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002108
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002109
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002110The Python Debugger
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002111
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002112(Not revised, possibly not up to date, see 1.5.2 Library Ref section 9.1; in 1.5.2, you may also use debugger integrated in IDLE)
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002113
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002114Accessing
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002115
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002116import pdb (it's a module written in Python)
2117 -- defines functions :
2118 run(statement[,globals[, locals]])
2119 -- execute statement string under debugger control, with optional
2120 global & local environment.
2121 runeval(expression[,globals[, locals]])
2122 -- same as run, but evaluate expression and return value.
2123 runcall(function[, argument, ...])
2124 -- run function object with given arg(s)
2125 pm() -- run postmortem on last exception (like debugging a core file)
2126 post_mortem(t)
2127 -- run postmortem on traceback object <t>
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002128
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002129 -- defines class Pdb :
2130 use Pdb to create reusable debugger objects. Object
2131 preserves state (i.e. break points) between calls.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002132
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002133 runs until a breakpoint hit, exception, or end of program
2134 If exception, variable '__exception__' holds (exception,value).
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002135
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002136Commands
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002137
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002138h, help
2139 brief reminder of commands
2140b, break [<arg>]
2141 if <arg> numeric, break at line <arg> in current file
2142 if <arg> is function object, break on entry to fcn <arg>
2143 if no arg, list breakpoints
2144cl, clear [<arg>]
2145 if <arg> numeric, clear breakpoint at <arg> in current file
2146 if no arg, clear all breakpoints after confirmation
2147w, where
2148 print current call stack
2149u, up
2150 move up one stack frame (to top-level caller)
2151d, down
2152 move down one stack frame
2153s, step
2154 advance one line in the program, stepping into calls
2155n, next
2156 advance one line, stepping over calls
2157r, return
2158 continue execution until current function returns
2159 (return value is saved in variable "__return__", which
2160 can be printed or manipulated from debugger)
2161c, continue
2162 continue until next breakpoint
Raymond Hettingere685f942003-01-26 03:29:15 +00002163j, jump lineno
2164 Set the next line that will be executed
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002165a, args
2166 print args to current function
2167rv, retval
2168 prints return value from last function that returned
2169p, print <arg>
2170 prints value of <arg> in current stack frame
2171l, list [<first> [, <last>]]
2172 List source code for the current file.
2173 Without arguments, list 11 lines around the current line
2174 or continue the previous listing.
2175 With one argument, list 11 lines starting at that line.
2176 With two arguments, list the given range;
2177 if the second argument is less than the first, it is a count.
2178whatis <arg>
2179 prints type of <arg>
2180!
2181 executes rest of line as a Python statement in the current stack frame
2182q quit
2183 immediately stop execution and leave debugger
2184<return>
2185 executes last command again
2186Any input debugger doesn't recognize as a command is assumed to be a
2187Python statement to execute in the current stack frame, the same way
2188the exclamation mark ("!") command does.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002189
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002190Example
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002191
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002192(1394) python
2193Python 1.0.3 (Sep 26 1994)
2194Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam
2195>>> import rm
2196>>> rm.run()
2197Traceback (innermost last):
2198 File "<stdin>", line 1
2199 File "./rm.py", line 7
2200 x = div(3)
2201 File "./rm.py", line 2
2202 return a / r
2203ZeroDivisionError: integer division or modulo
2204>>> import pdb
2205>>> pdb.pm()
2206> ./rm.py(2)div: return a / r
2207(Pdb) list
2208 1 def div(a):
2209 2 -> return a / r
2210 3
2211 4 def run():
2212 5 global r
2213 6 r = 0
2214 7 x = div(3)
2215 8 print x
2216[EOF]
2217(Pdb) print r
22180
2219(Pdb) q
2220>>> pdb.runcall(rm.run)
2221etc.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002222
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002223Quirks
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002224
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002225Breakpoints are stored as filename, line number tuples. If a module is reloaded
2226after editing, any remembered breakpoints are likely to be wrong.
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002227
Andrew M. Kuchling13423f32001-08-06 17:43:49 +00002228Always single-steps through top-most stack frame. That is, "c" acts like "n".
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002229
Guido van Rossumc8180cc1994-08-05 15:57:31 +00002230