blob: a77618fce0850a8008a9f2b64c49699878519bb1 [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)
65 ...
66 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)
78 ...
79 >>> 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
107To iterate over the indices of a sequence, combine :func:`range` and :func:`len`
108as follows::
109
110 >>> a = ['Mary', 'had', 'a', 'little', 'lamb']
111 >>> for i in range(len(a)):
112 ... print i, a[i]
113 ...
114 0 Mary
115 1 had
116 2 a
117 3 little
118 4 lamb
119
120
121.. _tut-break:
122
123:keyword:`break` and :keyword:`continue` Statements, and :keyword:`else` Clauses on Loops
124=========================================================================================
125
126The :keyword:`break` statement, like in C, breaks out of the smallest enclosing
127:keyword:`for` or :keyword:`while` loop.
128
129The :keyword:`continue` statement, also borrowed from C, continues with the next
130iteration of the loop.
131
132Loop statements may have an ``else`` clause; it is executed when the loop
133terminates through exhaustion of the list (with :keyword:`for`) or when the
134condition becomes false (with :keyword:`while`), but not when the loop is
135terminated by a :keyword:`break` statement. This is exemplified by the
136following loop, which searches for prime numbers::
137
138 >>> for n in range(2, 10):
139 ... for x in range(2, n):
140 ... if n % x == 0:
141 ... print n, 'equals', x, '*', n/x
142 ... break
Benjamin Peterson80790282008-08-02 03:05:11 +0000143 ... else:
144 ... # loop fell through without finding a factor
145 ... print n, 'is a prime number'
Georg Brandl8ec7f652007-08-15 14:28:01 +0000146 ...
147 2 is a prime number
148 3 is a prime number
149 4 equals 2 * 2
150 5 is a prime number
151 6 equals 2 * 3
152 7 is a prime number
153 8 equals 2 * 4
154 9 equals 3 * 3
155
156
157.. _tut-pass:
158
159:keyword:`pass` Statements
160==========================
161
162The :keyword:`pass` statement does nothing. It can be used when a statement is
163required syntactically but the program requires no action. For example::
164
165 >>> while True:
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000166 ... pass # Busy-wait for keyboard interrupt (Ctrl+C)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000167 ...
168
169
170.. _tut-functions:
171
172Defining Functions
173==================
174
175We can create a function that writes the Fibonacci series to an arbitrary
176boundary::
177
178 >>> def fib(n): # write Fibonacci series up to n
179 ... """Print a Fibonacci series up to n."""
180 ... a, b = 0, 1
181 ... while b < n:
182 ... print b,
183 ... a, b = b, a+b
184 ...
185 >>> # Now call the function we just defined:
186 ... fib(2000)
187 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
188
189.. index::
190 single: documentation strings
191 single: docstrings
192 single: strings, documentation
193
194The keyword :keyword:`def` introduces a function *definition*. It must be
195followed by the function name and the parenthesized list of formal parameters.
196The statements that form the body of the function start at the next line, and
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000197must be indented.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000198
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000199The first statement of the function body can optionally be a string literal;
200this string literal is the function's documentation string, or :dfn:`docstring`.
201(More about docstrings can be found in the section :ref:`tut-docstrings`.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000202There are tools which use docstrings to automatically produce online or printed
203documentation, or to let the user interactively browse through code; it's good
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000204practice to include docstrings in code that you write, so make a habit of it.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000205
206The *execution* of a function introduces a new symbol table used for the local
207variables of the function. More precisely, all variable assignments in a
208function store the value in the local symbol table; whereas variable references
Georg Brandlaa0de3f2008-01-21 16:51:51 +0000209first look in the local symbol table, then in the local symbol tables of
210enclosing functions, then in the global symbol table, and finally in the table
211of built-in names. Thus, global variables cannot be directly assigned a value
212within a function (unless named in a :keyword:`global` statement), although they
213may be referenced.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214
215The actual parameters (arguments) to a function call are introduced in the local
216symbol table of the called function when it is called; thus, arguments are
217passed using *call by value* (where the *value* is always an object *reference*,
218not the value of the object). [#]_ When a function calls another function, a new
219local symbol table is created for that call.
220
221A function definition introduces the function name in the current symbol table.
222The value of the function name has a type that is recognized by the interpreter
223as a user-defined function. This value can be assigned to another name which
224can then also be used as a function. This serves as a general renaming
225mechanism::
226
227 >>> fib
228 <function fib at 10042ed0>
229 >>> f = fib
230 >>> f(100)
231 1 1 2 3 5 8 13 21 34 55 89
232
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000233Coming from other languages, you might object that ``fib`` is not a function but
234a procedure since it doesn't return a value. In fact, even functions without a
235:keyword:`return` statement do return a value, albeit a rather boring one. This
236value is called ``None`` (it's a built-in name). Writing the value ``None`` is
237normally suppressed by the interpreter if it would be the only value written.
238You can see it if you really want to using :keyword:`print`::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000239
Georg Brandl706132b2007-10-30 17:57:12 +0000240 >>> fib(0)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000241 >>> print fib(0)
242 None
243
244It is simple to write a function that returns a list of the numbers of the
245Fibonacci series, instead of printing it::
246
247 >>> def fib2(n): # return Fibonacci series up to n
248 ... """Return a list containing the Fibonacci series up to n."""
249 ... result = []
250 ... a, b = 0, 1
251 ... while b < n:
252 ... result.append(b) # see below
253 ... a, b = b, a+b
254 ... return result
255 ...
256 >>> f100 = fib2(100) # call it
257 >>> f100 # write the result
258 [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
259
260This example, as usual, demonstrates some new Python features:
261
262* The :keyword:`return` statement returns with a value from a function.
263 :keyword:`return` without an expression argument returns ``None``. Falling off
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000264 the end of a function also returns ``None``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000265
266* The statement ``result.append(b)`` calls a *method* of the list object
267 ``result``. A method is a function that 'belongs' to an object and is named
268 ``obj.methodname``, where ``obj`` is some object (this may be an expression),
269 and ``methodname`` is the name of a method that is defined by the object's type.
270 Different types define different methods. Methods of different types may have
271 the same name without causing ambiguity. (It is possible to define your own
272 object types and methods, using *classes*, as discussed later in this tutorial.)
273 The method :meth:`append` shown in the example is defined for list objects; it
274 adds a new element at the end of the list. In this example it is equivalent to
275 ``result = result + [b]``, but more efficient.
276
277
278.. _tut-defining:
279
280More on Defining Functions
281==========================
282
283It is also possible to define functions with a variable number of arguments.
284There are three forms, which can be combined.
285
286
287.. _tut-defaultargs:
288
289Default Argument Values
290-----------------------
291
292The most useful form is to specify a default value for one or more arguments.
293This creates a function that can be called with fewer arguments than it is
294defined to allow. For example::
295
296 def ask_ok(prompt, retries=4, complaint='Yes or no, please!'):
297 while True:
298 ok = raw_input(prompt)
299 if ok in ('y', 'ye', 'yes'): return True
300 if ok in ('n', 'no', 'nop', 'nope'): return False
301 retries = retries - 1
302 if retries < 0: raise IOError, 'refusenik user'
303 print complaint
304
305This function can be called either like this: ``ask_ok('Do you really want to
306quit?')`` or like this: ``ask_ok('OK to overwrite the file?', 2)``.
307
308This example also introduces the :keyword:`in` keyword. This tests whether or
309not a sequence contains a certain value.
310
311The default values are evaluated at the point of function definition in the
312*defining* scope, so that ::
313
314 i = 5
315
316 def f(arg=i):
317 print arg
318
319 i = 6
320 f()
321
322will print ``5``.
323
324**Important warning:** The default value is evaluated only once. This makes a
325difference when the default is a mutable object such as a list, dictionary, or
326instances of most classes. For example, the following function accumulates the
327arguments passed to it on subsequent calls::
328
329 def f(a, L=[]):
330 L.append(a)
331 return L
332
333 print f(1)
334 print f(2)
335 print f(3)
336
337This will print ::
338
339 [1]
340 [1, 2]
341 [1, 2, 3]
342
343If you don't want the default to be shared between subsequent calls, you can
344write the function like this instead::
345
346 def f(a, L=None):
347 if L is None:
348 L = []
349 L.append(a)
350 return L
351
352
353.. _tut-keywordargs:
354
355Keyword Arguments
356-----------------
357
358Functions can also be called using keyword arguments of the form ``keyword =
359value``. For instance, the following function::
360
361 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'):
362 print "-- This parrot wouldn't", action,
363 print "if you put", voltage, "volts through it."
364 print "-- Lovely plumage, the", type
365 print "-- It's", state, "!"
366
367could be called in any of the following ways::
368
369 parrot(1000)
370 parrot(action = 'VOOOOOM', voltage = 1000000)
371 parrot('a thousand', state = 'pushing up the daisies')
372 parrot('a million', 'bereft of life', 'jump')
373
374but the following calls would all be invalid::
375
376 parrot() # required argument missing
377 parrot(voltage=5.0, 'dead') # non-keyword argument following keyword
378 parrot(110, voltage=220) # duplicate value for argument
379 parrot(actor='John Cleese') # unknown keyword
380
381In general, an argument list must have any positional arguments followed by any
382keyword arguments, where the keywords must be chosen from the formal parameter
383names. It's not important whether a formal parameter has a default value or
384not. No argument may receive a value more than once --- formal parameter names
385corresponding to positional arguments cannot be used as keywords in the same
386calls. Here's an example that fails due to this restriction::
387
388 >>> def function(a):
389 ... pass
390 ...
391 >>> function(0, a=0)
392 Traceback (most recent call last):
393 File "<stdin>", line 1, in ?
394 TypeError: function() got multiple values for keyword argument 'a'
395
396When a final formal parameter of the form ``**name`` is present, it receives a
397dictionary (see :ref:`typesmapping`) containing all keyword arguments except for
398those corresponding to a formal parameter. This may be combined with a formal
399parameter of the form ``*name`` (described in the next subsection) which
400receives a tuple containing the positional arguments beyond the formal parameter
401list. (``*name`` must occur before ``**name``.) For example, if we define a
402function like this::
403
404 def cheeseshop(kind, *arguments, **keywords):
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000405 print "-- Do you have any", kind, "?"
Georg Brandl8ec7f652007-08-15 14:28:01 +0000406 print "-- I'm sorry, we're all out of", kind
407 for arg in arguments: print arg
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000408 print "-" * 40
Georg Brandl8ec7f652007-08-15 14:28:01 +0000409 keys = keywords.keys()
410 keys.sort()
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000411 for kw in keys: print kw, ":", keywords[kw]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000412
413It could be called like this::
414
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000415 cheeseshop("Limburger", "It's very runny, sir.",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000416 "It's really very, VERY runny, sir.",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000417 shopkeeper='Michael Palin',
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000418 client="John Cleese",
419 sketch="Cheese Shop Sketch")
Georg Brandl8ec7f652007-08-15 14:28:01 +0000420
421and of course it would print::
422
423 -- Do you have any Limburger ?
424 -- I'm sorry, we're all out of Limburger
425 It's very runny, sir.
426 It's really very, VERY runny, sir.
427 ----------------------------------------
428 client : John Cleese
429 shopkeeper : Michael Palin
430 sketch : Cheese Shop Sketch
431
432Note that the :meth:`sort` method of the list of keyword argument names is
433called before printing the contents of the ``keywords`` dictionary; if this is
434not done, the order in which the arguments are printed is undefined.
435
436
437.. _tut-arbitraryargs:
438
439Arbitrary Argument Lists
440------------------------
441
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000442.. index::
443 statement: *
444
Georg Brandl8ec7f652007-08-15 14:28:01 +0000445Finally, the least frequently used option is to specify that a function can be
446called with an arbitrary number of arguments. These arguments will be wrapped
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000447up in a tuple (see :ref:`tut-tuples`). Before the variable number of arguments,
448zero or more normal arguments may occur. ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000449
Benjamin Petersondee01d82008-05-28 11:51:41 +0000450 def write_multiple_items(file, separator, *args):
451 file.write(separator.join(args))
Georg Brandl8ec7f652007-08-15 14:28:01 +0000452
453
454.. _tut-unpacking-arguments:
455
456Unpacking Argument Lists
457------------------------
458
459The reverse situation occurs when the arguments are already in a list or tuple
460but need to be unpacked for a function call requiring separate positional
461arguments. For instance, the built-in :func:`range` function expects separate
462*start* and *stop* arguments. If they are not available separately, write the
463function call with the ``*``\ -operator to unpack the arguments out of a list
464or tuple::
465
466 >>> range(3, 6) # normal call with separate arguments
467 [3, 4, 5]
468 >>> args = [3, 6]
469 >>> range(*args) # call with arguments unpacked from a list
470 [3, 4, 5]
471
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000472.. index::
473 statement: **
474
Georg Brandl8ec7f652007-08-15 14:28:01 +0000475In the same fashion, dictionaries can deliver keyword arguments with the ``**``\
476-operator::
477
478 >>> def parrot(voltage, state='a stiff', action='voom'):
479 ... print "-- This parrot wouldn't", action,
480 ... print "if you put", voltage, "volts through it.",
481 ... print "E's", state, "!"
482 ...
483 >>> d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"}
484 >>> parrot(**d)
485 -- This parrot wouldn't VOOM if you put four million volts through it. E's bleedin' demised !
486
487
488.. _tut-lambda:
489
490Lambda Forms
491------------
492
493By popular demand, a few features commonly found in functional programming
494languages like Lisp have been added to Python. With the :keyword:`lambda`
495keyword, small anonymous functions can be created. Here's a function that
496returns the sum of its two arguments: ``lambda a, b: a+b``. Lambda forms can be
497used wherever function objects are required. They are syntactically restricted
498to a single expression. Semantically, they are just syntactic sugar for a
499normal function definition. Like nested function definitions, lambda forms can
500reference variables from the containing scope::
501
502 >>> def make_incrementor(n):
503 ... return lambda x: x + n
504 ...
505 >>> f = make_incrementor(42)
506 >>> f(0)
507 42
508 >>> f(1)
509 43
510
511
512.. _tut-docstrings:
513
514Documentation Strings
515---------------------
516
517.. index::
518 single: docstrings
519 single: documentation strings
520 single: strings, documentation
521
522There are emerging conventions about the content and formatting of documentation
523strings.
524
525The first line should always be a short, concise summary of the object's
526purpose. For brevity, it should not explicitly state the object's name or type,
527since these are available by other means (except if the name happens to be a
528verb describing a function's operation). This line should begin with a capital
529letter and end with a period.
530
531If there are more lines in the documentation string, the second line should be
532blank, visually separating the summary from the rest of the description. The
533following lines should be one or more paragraphs describing the object's calling
534conventions, its side effects, etc.
535
536The Python parser does not strip indentation from multi-line string literals in
537Python, so tools that process documentation have to strip indentation if
538desired. This is done using the following convention. The first non-blank line
539*after* the first line of the string determines the amount of indentation for
540the entire documentation string. (We can't use the first line since it is
541generally adjacent to the string's opening quotes so its indentation is not
542apparent in the string literal.) Whitespace "equivalent" to this indentation is
543then stripped from the start of all lines of the string. Lines that are
544indented less should not occur, but if they occur all their leading whitespace
545should be stripped. Equivalence of whitespace should be tested after expansion
546of tabs (to 8 spaces, normally).
547
548Here is an example of a multi-line docstring::
549
550 >>> def my_function():
551 ... """Do nothing, but document it.
552 ...
553 ... No, really, it doesn't do anything.
554 ... """
555 ... pass
556 ...
557 >>> print my_function.__doc__
558 Do nothing, but document it.
559
560 No, really, it doesn't do anything.
561
562
Georg Brandl35f88612008-01-06 22:05:40 +0000563.. _tut-codingstyle:
564
565Intermezzo: Coding Style
566========================
567
568.. sectionauthor:: Georg Brandl <georg@python.org>
569.. index:: pair: coding; style
570
571Now that you are about to write longer, more complex pieces of Python, it is a
572good time to talk about *coding style*. Most languages can be written (or more
573concise, *formatted*) in different styles; some are more readable than others.
574Making it easy for others to read your code is always a good idea, and adopting
575a nice coding style helps tremendously for that.
576
Andrew M. Kuchling8c65b1e2008-04-15 13:10:41 +0000577For Python, :pep:`8` has emerged as the style guide that most projects adhere to;
Georg Brandl35f88612008-01-06 22:05:40 +0000578it promotes a very readable and eye-pleasing coding style. Every Python
579developer should read it at some point; here are the most important points
580extracted for you:
581
582* Use 4-space indentation, and no tabs.
583
584 4 spaces are a good compromise between small indentation (allows greater
585 nesting depth) and large indentation (easier to read). Tabs introduce
586 confusion, and are best left out.
587
588* Wrap lines so that they don't exceed 79 characters.
589
590 This helps users with small displays and makes it possible to have several
591 code files side-by-side on larger displays.
592
593* Use blank lines to separate functions and classes, and larger blocks of
594 code inside functions.
595
596* When possible, put comments on a line of their own.
597
598* Use docstrings.
599
600* Use spaces around operators and after commas, but not directly inside
601 bracketing constructs: ``a = f(1, 2) + g(3, 4)``.
602
603* Name your classes and functions consistently; the convention is to use
604 ``CamelCase`` for classes and ``lower_case_with_underscores`` for functions
Georg Brandl3ce0dee2008-09-13 17:18:11 +0000605 and methods. Always use ``self`` as the name for the first method argument
606 (see :ref:`tut-firstclasses` for more on classes and methods).
Georg Brandl35f88612008-01-06 22:05:40 +0000607
608* Don't use fancy encodings if your code is meant to be used in international
609 environments. Plain ASCII works best in any case.
610
Georg Brandl8ec7f652007-08-15 14:28:01 +0000611
612.. rubric:: Footnotes
613
Georg Brandl35f88612008-01-06 22:05:40 +0000614.. [#] Actually, *call by object reference* would be a better description,
615 since if a mutable object is passed, the caller will see any changes the
616 callee makes to it (items inserted into a list).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000617