blob: 95a6ea4d2cba3cc4020bb782e0397072a103cbf3 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _tut-morecontrol:
2
3***********************
4More Control Flow Tools
5***********************
6
7Besides the :keyword:`while` statement just introduced, Python knows the usual
8control flow statements known from other languages, with some twists.
9
10
11.. _tut-if:
12
13:keyword:`if` Statements
14========================
15
16Perhaps the most well-known statement type is the :keyword:`if` statement. For
17example::
18
19 >>> x = int(raw_input("Please enter an integer: "))
Georg Brandl3ce0dee2008-09-13 17:18:11 +000020 Please enter an integer: 42
Georg Brandl8ec7f652007-08-15 14:28:01 +000021 >>> if x < 0:
22 ... x = 0
23 ... print 'Negative changed to zero'
24 ... elif x == 0:
25 ... print 'Zero'
26 ... elif x == 1:
27 ... print 'Single'
28 ... else:
29 ... print 'More'
Georg Brandl3ce0dee2008-09-13 17:18:11 +000030 ...
31 More
Georg Brandl8ec7f652007-08-15 14:28:01 +000032
33There can be zero or more :keyword:`elif` parts, and the :keyword:`else` part is
34optional. The keyword ':keyword:`elif`' is short for 'else if', and is useful
35to avoid excessive indentation. An :keyword:`if` ... :keyword:`elif` ...
Georg Brandlb19be572007-12-29 10:57:00 +000036:keyword:`elif` ... sequence is a substitute for the ``switch`` or
37``case`` statements found in other languages.
Georg Brandl8ec7f652007-08-15 14:28:01 +000038
39
40.. _tut-for:
41
42:keyword:`for` Statements
43=========================
44
45.. index::
46 statement: for
47 statement: for
48
49The :keyword:`for` statement in Python differs a bit from what you may be used
50to in C or Pascal. Rather than always iterating over an arithmetic progression
51of numbers (like in Pascal), or giving the user the ability to define both the
52iteration step and halting condition (as C), Python's :keyword:`for` statement
53iterates over the items of any sequence (a list or a string), in the order that
54they appear in the sequence. For example (no pun intended):
55
Georg Brandlb19be572007-12-29 10:57:00 +000056.. One suggestion was to give a real C example here, but that may only serve to
57 confuse non-C programmers.
Georg Brandl8ec7f652007-08-15 14:28:01 +000058
59::
60
61 >>> # Measure some strings:
62 ... a = ['cat', 'window', 'defenestrate']
63 >>> for x in a:
64 ... print x, len(x)
Georg Brandlc62ef8b2009-01-03 20:55:06 +000065 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +000066 cat 3
67 window 6
68 defenestrate 12
69
70It is not safe to modify the sequence being iterated over in the loop (this can
71only happen for mutable sequence types, such as lists). If you need to modify
72the list you are iterating over (for example, to duplicate selected items) you
73must iterate over a copy. The slice notation makes this particularly
74convenient::
75
76 >>> for x in a[:]: # make a slice copy of the entire list
77 ... if len(x) > 6: a.insert(0, x)
Georg Brandlc62ef8b2009-01-03 20:55:06 +000078 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +000079 >>> a
80 ['defenestrate', 'cat', 'window', 'defenestrate']
81
82
83.. _tut-range:
84
85The :func:`range` Function
86==========================
87
88If you do need to iterate over a sequence of numbers, the built-in function
89:func:`range` comes in handy. It generates lists containing arithmetic
90progressions::
91
92 >>> range(10)
93 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
94
95The given end point is never part of the generated list; ``range(10)`` generates
96a list of 10 values, the legal indices for items of a sequence of length 10. It
97is possible to let the range start at another number, or to specify a different
98increment (even negative; sometimes this is called the 'step')::
99
100 >>> range(5, 10)
101 [5, 6, 7, 8, 9]
102 >>> range(0, 10, 3)
103 [0, 3, 6, 9]
104 >>> range(-10, -100, -30)
105 [-10, -40, -70]
106
Georg Brandl34196c82008-12-04 18:54:05 +0000107To iterate over the indices of a sequence, you can combine :func:`range` and
108:func:`len` as follows::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000109
110 >>> a = ['Mary', 'had', 'a', 'little', 'lamb']
111 >>> for i in range(len(a)):
112 ... print i, a[i]
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000113 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000114 0 Mary
115 1 had
116 2 a
117 3 little
118 4 lamb
119
Georg Brandl34196c82008-12-04 18:54:05 +0000120In most such cases, however, it is convenient to use the :func:`enumerate`
121function, see :ref:`tut-loopidioms`.
122
Georg Brandl8ec7f652007-08-15 14:28:01 +0000123
124.. _tut-break:
125
126:keyword:`break` and :keyword:`continue` Statements, and :keyword:`else` Clauses on Loops
127=========================================================================================
128
129The :keyword:`break` statement, like in C, breaks out of the smallest enclosing
130:keyword:`for` or :keyword:`while` loop.
131
132The :keyword:`continue` statement, also borrowed from C, continues with the next
133iteration of the loop.
134
135Loop statements may have an ``else`` clause; it is executed when the loop
136terminates through exhaustion of the list (with :keyword:`for`) or when the
137condition becomes false (with :keyword:`while`), but not when the loop is
138terminated by a :keyword:`break` statement. This is exemplified by the
139following loop, which searches for prime numbers::
140
141 >>> for n in range(2, 10):
142 ... for x in range(2, n):
143 ... if n % x == 0:
144 ... print n, 'equals', x, '*', n/x
145 ... break
Benjamin Peterson80790282008-08-02 03:05:11 +0000146 ... else:
147 ... # loop fell through without finding a factor
148 ... print n, 'is a prime number'
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000149 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150 2 is a prime number
151 3 is a prime number
152 4 equals 2 * 2
153 5 is a prime number
154 6 equals 2 * 3
155 7 is a prime number
156 8 equals 2 * 4
157 9 equals 3 * 3
158
159
160.. _tut-pass:
161
162:keyword:`pass` Statements
163==========================
164
165The :keyword:`pass` statement does nothing. It can be used when a statement is
166required syntactically but the program requires no action. For example::
167
168 >>> while True:
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000169 ... pass # Busy-wait for keyboard interrupt (Ctrl+C)
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000170 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000171
Benjamin Peterson42d19e62008-12-24 16:10:05 +0000172This is commonly used for creating minimal classes::
Georg Brandla8bb5502008-11-06 18:49:15 +0000173
Benjamin Peterson42d19e62008-12-24 16:10:05 +0000174 >>> class MyEmptyClass:
Georg Brandla8bb5502008-11-06 18:49:15 +0000175 ... pass
Benjamin Peterson42d19e62008-12-24 16:10:05 +0000176 ...
Georg Brandla8bb5502008-11-06 18:49:15 +0000177
Andrew M. Kuchlingfcdc80b2008-11-06 19:23:02 +0000178Another place :keyword:`pass` can be used is as a place-holder for a function or
Benjamin Peterson42d19e62008-12-24 16:10:05 +0000179conditional body when you are working on new code, allowing you to keep thinking
180at a more abstract level. The :keyword:`pass` is silently ignored::
Georg Brandla8bb5502008-11-06 18:49:15 +0000181
182 >>> def initlog(*args):
Benjamin Peterson42d19e62008-12-24 16:10:05 +0000183 ... pass # Remember to implement this!
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000184 ...
Georg Brandla8bb5502008-11-06 18:49:15 +0000185
Georg Brandl8ec7f652007-08-15 14:28:01 +0000186.. _tut-functions:
187
188Defining Functions
189==================
190
191We can create a function that writes the Fibonacci series to an arbitrary
192boundary::
193
194 >>> def fib(n): # write Fibonacci series up to n
195 ... """Print a Fibonacci series up to n."""
196 ... a, b = 0, 1
197 ... while b < n:
198 ... print b,
199 ... a, b = b, a+b
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000200 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000201 >>> # Now call the function we just defined:
202 ... fib(2000)
203 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
204
205.. index::
206 single: documentation strings
207 single: docstrings
208 single: strings, documentation
209
210The keyword :keyword:`def` introduces a function *definition*. It must be
211followed by the function name and the parenthesized list of formal parameters.
212The statements that form the body of the function start at the next line, and
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000213must be indented.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000215The first statement of the function body can optionally be a string literal;
216this string literal is the function's documentation string, or :dfn:`docstring`.
217(More about docstrings can be found in the section :ref:`tut-docstrings`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000218There are tools which use docstrings to automatically produce online or printed
219documentation, or to let the user interactively browse through code; it's good
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000220practice to include docstrings in code that you write, so make a habit of it.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000221
222The *execution* of a function introduces a new symbol table used for the local
223variables of the function. More precisely, all variable assignments in a
224function store the value in the local symbol table; whereas variable references
Georg Brandlaa0de3f2008-01-21 16:51:51 +0000225first look in the local symbol table, then in the local symbol tables of
226enclosing functions, then in the global symbol table, and finally in the table
227of built-in names. Thus, global variables cannot be directly assigned a value
228within a function (unless named in a :keyword:`global` statement), although they
229may be referenced.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000230
231The actual parameters (arguments) to a function call are introduced in the local
232symbol table of the called function when it is called; thus, arguments are
233passed using *call by value* (where the *value* is always an object *reference*,
234not the value of the object). [#]_ When a function calls another function, a new
235local symbol table is created for that call.
236
237A function definition introduces the function name in the current symbol table.
238The value of the function name has a type that is recognized by the interpreter
239as a user-defined function. This value can be assigned to another name which
240can then also be used as a function. This serves as a general renaming
241mechanism::
242
243 >>> fib
244 <function fib at 10042ed0>
245 >>> f = fib
246 >>> f(100)
247 1 1 2 3 5 8 13 21 34 55 89
248
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000249Coming from other languages, you might object that ``fib`` is not a function but
250a procedure since it doesn't return a value. In fact, even functions without a
251:keyword:`return` statement do return a value, albeit a rather boring one. This
252value is called ``None`` (it's a built-in name). Writing the value ``None`` is
253normally suppressed by the interpreter if it would be the only value written.
254You can see it if you really want to using :keyword:`print`::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000255
Georg Brandl706132b2007-10-30 17:57:12 +0000256 >>> fib(0)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000257 >>> print fib(0)
258 None
259
260It is simple to write a function that returns a list of the numbers of the
261Fibonacci series, instead of printing it::
262
263 >>> def fib2(n): # return Fibonacci series up to n
264 ... """Return a list containing the Fibonacci series up to n."""
265 ... result = []
266 ... a, b = 0, 1
267 ... while b < n:
268 ... result.append(b) # see below
269 ... a, b = b, a+b
270 ... return result
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000271 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000272 >>> f100 = fib2(100) # call it
273 >>> f100 # write the result
274 [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
275
276This example, as usual, demonstrates some new Python features:
277
278* The :keyword:`return` statement returns with a value from a function.
279 :keyword:`return` without an expression argument returns ``None``. Falling off
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000280 the end of a function also returns ``None``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000281
282* The statement ``result.append(b)`` calls a *method* of the list object
283 ``result``. A method is a function that 'belongs' to an object and is named
284 ``obj.methodname``, where ``obj`` is some object (this may be an expression),
285 and ``methodname`` is the name of a method that is defined by the object's type.
286 Different types define different methods. Methods of different types may have
287 the same name without causing ambiguity. (It is possible to define your own
288 object types and methods, using *classes*, as discussed later in this tutorial.)
289 The method :meth:`append` shown in the example is defined for list objects; it
290 adds a new element at the end of the list. In this example it is equivalent to
291 ``result = result + [b]``, but more efficient.
292
293
294.. _tut-defining:
295
296More on Defining Functions
297==========================
298
299It is also possible to define functions with a variable number of arguments.
300There are three forms, which can be combined.
301
302
303.. _tut-defaultargs:
304
305Default Argument Values
306-----------------------
307
308The most useful form is to specify a default value for one or more arguments.
309This creates a function that can be called with fewer arguments than it is
310defined to allow. For example::
311
312 def ask_ok(prompt, retries=4, complaint='Yes or no, please!'):
313 while True:
314 ok = raw_input(prompt)
315 if ok in ('y', 'ye', 'yes'): return True
316 if ok in ('n', 'no', 'nop', 'nope'): return False
317 retries = retries - 1
318 if retries < 0: raise IOError, 'refusenik user'
319 print complaint
320
321This function can be called either like this: ``ask_ok('Do you really want to
322quit?')`` or like this: ``ask_ok('OK to overwrite the file?', 2)``.
323
324This example also introduces the :keyword:`in` keyword. This tests whether or
325not a sequence contains a certain value.
326
327The default values are evaluated at the point of function definition in the
328*defining* scope, so that ::
329
330 i = 5
331
332 def f(arg=i):
333 print arg
334
335 i = 6
336 f()
337
338will print ``5``.
339
340**Important warning:** The default value is evaluated only once. This makes a
341difference when the default is a mutable object such as a list, dictionary, or
342instances of most classes. For example, the following function accumulates the
343arguments passed to it on subsequent calls::
344
345 def f(a, L=[]):
346 L.append(a)
347 return L
348
349 print f(1)
350 print f(2)
351 print f(3)
352
353This will print ::
354
355 [1]
356 [1, 2]
357 [1, 2, 3]
358
359If you don't want the default to be shared between subsequent calls, you can
360write the function like this instead::
361
362 def f(a, L=None):
363 if L is None:
364 L = []
365 L.append(a)
366 return L
367
368
369.. _tut-keywordargs:
370
371Keyword Arguments
372-----------------
373
374Functions can also be called using keyword arguments of the form ``keyword =
375value``. For instance, the following function::
376
377 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'):
378 print "-- This parrot wouldn't", action,
379 print "if you put", voltage, "volts through it."
380 print "-- Lovely plumage, the", type
381 print "-- It's", state, "!"
382
383could be called in any of the following ways::
384
385 parrot(1000)
386 parrot(action = 'VOOOOOM', voltage = 1000000)
387 parrot('a thousand', state = 'pushing up the daisies')
388 parrot('a million', 'bereft of life', 'jump')
389
390but the following calls would all be invalid::
391
392 parrot() # required argument missing
393 parrot(voltage=5.0, 'dead') # non-keyword argument following keyword
394 parrot(110, voltage=220) # duplicate value for argument
395 parrot(actor='John Cleese') # unknown keyword
396
397In general, an argument list must have any positional arguments followed by any
398keyword arguments, where the keywords must be chosen from the formal parameter
399names. It's not important whether a formal parameter has a default value or
400not. No argument may receive a value more than once --- formal parameter names
401corresponding to positional arguments cannot be used as keywords in the same
402calls. Here's an example that fails due to this restriction::
403
404 >>> def function(a):
405 ... pass
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000406 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000407 >>> function(0, a=0)
408 Traceback (most recent call last):
409 File "<stdin>", line 1, in ?
410 TypeError: function() got multiple values for keyword argument 'a'
411
412When a final formal parameter of the form ``**name`` is present, it receives a
413dictionary (see :ref:`typesmapping`) containing all keyword arguments except for
414those corresponding to a formal parameter. This may be combined with a formal
415parameter of the form ``*name`` (described in the next subsection) which
416receives a tuple containing the positional arguments beyond the formal parameter
417list. (``*name`` must occur before ``**name``.) For example, if we define a
418function like this::
419
420 def cheeseshop(kind, *arguments, **keywords):
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000421 print "-- Do you have any", kind, "?"
Georg Brandl8ec7f652007-08-15 14:28:01 +0000422 print "-- I'm sorry, we're all out of", kind
423 for arg in arguments: print arg
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000424 print "-" * 40
Georg Brandl8ec7f652007-08-15 14:28:01 +0000425 keys = keywords.keys()
426 keys.sort()
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000427 for kw in keys: print kw, ":", keywords[kw]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000428
429It could be called like this::
430
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000431 cheeseshop("Limburger", "It's very runny, sir.",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000432 "It's really very, VERY runny, sir.",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000433 shopkeeper='Michael Palin',
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000434 client="John Cleese",
435 sketch="Cheese Shop Sketch")
Georg Brandl8ec7f652007-08-15 14:28:01 +0000436
437and of course it would print::
438
439 -- Do you have any Limburger ?
440 -- I'm sorry, we're all out of Limburger
441 It's very runny, sir.
442 It's really very, VERY runny, sir.
443 ----------------------------------------
444 client : John Cleese
445 shopkeeper : Michael Palin
446 sketch : Cheese Shop Sketch
447
448Note that the :meth:`sort` method of the list of keyword argument names is
449called before printing the contents of the ``keywords`` dictionary; if this is
450not done, the order in which the arguments are printed is undefined.
451
452
453.. _tut-arbitraryargs:
454
455Arbitrary Argument Lists
456------------------------
457
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000458.. index::
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000459 statement: *
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000460
Georg Brandl8ec7f652007-08-15 14:28:01 +0000461Finally, the least frequently used option is to specify that a function can be
462called with an arbitrary number of arguments. These arguments will be wrapped
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000463up in a tuple (see :ref:`tut-tuples`). Before the variable number of arguments,
464zero or more normal arguments may occur. ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000465
Benjamin Petersondee01d82008-05-28 11:51:41 +0000466 def write_multiple_items(file, separator, *args):
467 file.write(separator.join(args))
Georg Brandl8ec7f652007-08-15 14:28:01 +0000468
469
470.. _tut-unpacking-arguments:
471
472Unpacking Argument Lists
473------------------------
474
475The reverse situation occurs when the arguments are already in a list or tuple
476but need to be unpacked for a function call requiring separate positional
477arguments. For instance, the built-in :func:`range` function expects separate
478*start* and *stop* arguments. If they are not available separately, write the
479function call with the ``*``\ -operator to unpack the arguments out of a list
480or tuple::
481
482 >>> range(3, 6) # normal call with separate arguments
483 [3, 4, 5]
484 >>> args = [3, 6]
485 >>> range(*args) # call with arguments unpacked from a list
486 [3, 4, 5]
487
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000488.. index::
489 statement: **
490
Georg Brandl8ec7f652007-08-15 14:28:01 +0000491In the same fashion, dictionaries can deliver keyword arguments with the ``**``\
492-operator::
493
494 >>> def parrot(voltage, state='a stiff', action='voom'):
495 ... print "-- This parrot wouldn't", action,
496 ... print "if you put", voltage, "volts through it.",
497 ... print "E's", state, "!"
498 ...
499 >>> d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"}
500 >>> parrot(**d)
501 -- This parrot wouldn't VOOM if you put four million volts through it. E's bleedin' demised !
502
503
504.. _tut-lambda:
505
506Lambda Forms
507------------
508
509By popular demand, a few features commonly found in functional programming
510languages like Lisp have been added to Python. With the :keyword:`lambda`
511keyword, small anonymous functions can be created. Here's a function that
512returns the sum of its two arguments: ``lambda a, b: a+b``. Lambda forms can be
513used wherever function objects are required. They are syntactically restricted
514to a single expression. Semantically, they are just syntactic sugar for a
515normal function definition. Like nested function definitions, lambda forms can
516reference variables from the containing scope::
517
518 >>> def make_incrementor(n):
519 ... return lambda x: x + n
520 ...
521 >>> f = make_incrementor(42)
522 >>> f(0)
523 42
524 >>> f(1)
525 43
526
527
528.. _tut-docstrings:
529
530Documentation Strings
531---------------------
532
533.. index::
534 single: docstrings
535 single: documentation strings
536 single: strings, documentation
537
538There are emerging conventions about the content and formatting of documentation
539strings.
540
541The first line should always be a short, concise summary of the object's
542purpose. For brevity, it should not explicitly state the object's name or type,
543since these are available by other means (except if the name happens to be a
544verb describing a function's operation). This line should begin with a capital
545letter and end with a period.
546
547If there are more lines in the documentation string, the second line should be
548blank, visually separating the summary from the rest of the description. The
549following lines should be one or more paragraphs describing the object's calling
550conventions, its side effects, etc.
551
552The Python parser does not strip indentation from multi-line string literals in
553Python, so tools that process documentation have to strip indentation if
554desired. This is done using the following convention. The first non-blank line
555*after* the first line of the string determines the amount of indentation for
556the entire documentation string. (We can't use the first line since it is
557generally adjacent to the string's opening quotes so its indentation is not
558apparent in the string literal.) Whitespace "equivalent" to this indentation is
559then stripped from the start of all lines of the string. Lines that are
560indented less should not occur, but if they occur all their leading whitespace
561should be stripped. Equivalence of whitespace should be tested after expansion
562of tabs (to 8 spaces, normally).
563
564Here is an example of a multi-line docstring::
565
566 >>> def my_function():
567 ... """Do nothing, but document it.
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000568 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000569 ... No, really, it doesn't do anything.
570 ... """
571 ... pass
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000572 ...
Georg Brandl8ec7f652007-08-15 14:28:01 +0000573 >>> print my_function.__doc__
574 Do nothing, but document it.
575
576 No, really, it doesn't do anything.
577
578
Georg Brandl35f88612008-01-06 22:05:40 +0000579.. _tut-codingstyle:
580
581Intermezzo: Coding Style
582========================
583
584.. sectionauthor:: Georg Brandl <georg@python.org>
585.. index:: pair: coding; style
586
587Now that you are about to write longer, more complex pieces of Python, it is a
588good time to talk about *coding style*. Most languages can be written (or more
589concise, *formatted*) in different styles; some are more readable than others.
590Making it easy for others to read your code is always a good idea, and adopting
591a nice coding style helps tremendously for that.
592
Andrew M. Kuchling8c65b1e2008-04-15 13:10:41 +0000593For Python, :pep:`8` has emerged as the style guide that most projects adhere to;
Georg Brandl35f88612008-01-06 22:05:40 +0000594it promotes a very readable and eye-pleasing coding style. Every Python
595developer should read it at some point; here are the most important points
596extracted for you:
597
598* Use 4-space indentation, and no tabs.
599
600 4 spaces are a good compromise between small indentation (allows greater
601 nesting depth) and large indentation (easier to read). Tabs introduce
602 confusion, and are best left out.
603
604* Wrap lines so that they don't exceed 79 characters.
605
606 This helps users with small displays and makes it possible to have several
607 code files side-by-side on larger displays.
608
609* Use blank lines to separate functions and classes, and larger blocks of
610 code inside functions.
611
612* When possible, put comments on a line of their own.
613
614* Use docstrings.
615
616* Use spaces around operators and after commas, but not directly inside
617 bracketing constructs: ``a = f(1, 2) + g(3, 4)``.
618
619* Name your classes and functions consistently; the convention is to use
620 ``CamelCase`` for classes and ``lower_case_with_underscores`` for functions
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000621 and methods. Always use ``self`` as the name for the first method argument
622 (see :ref:`tut-firstclasses` for more on classes and methods).
Georg Brandl35f88612008-01-06 22:05:40 +0000623
624* Don't use fancy encodings if your code is meant to be used in international
625 environments. Plain ASCII works best in any case.
626
Georg Brandl8ec7f652007-08-15 14:28:01 +0000627
628.. rubric:: Footnotes
629
Georg Brandl35f88612008-01-06 22:05:40 +0000630.. [#] Actually, *call by object reference* would be a better description,
631 since if a mutable object is passed, the caller will see any changes the
632 callee makes to it (items inserted into a list).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000633