blob: ef50731a5b69f428595917f7eb5b627600facfb4 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +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
Georg Brandle9af2842007-08-17 05:54:09 +000019 >>> x = int(input("Please enter an integer: "))
Georg Brandl5d955ed2008-09-13 17:18:21 +000020 Please enter an integer: 42
Georg Brandl116aa622007-08-15 14:28:22 +000021 >>> if x < 0:
Ezio Melottie65cb192013-11-17 22:07:48 +020022 ... x = 0
23 ... print('Negative changed to zero')
Georg Brandl116aa622007-08-15 14:28:22 +000024 ... elif x == 0:
Ezio Melottie65cb192013-11-17 22:07:48 +020025 ... print('Zero')
Georg Brandl116aa622007-08-15 14:28:22 +000026 ... elif x == 1:
Ezio Melottie65cb192013-11-17 22:07:48 +020027 ... print('Single')
Georg Brandl116aa622007-08-15 14:28:22 +000028 ... else:
Ezio Melottie65cb192013-11-17 22:07:48 +020029 ... print('More')
Georg Brandl5d955ed2008-09-13 17:18:21 +000030 ...
31 More
Georg Brandl116aa622007-08-15 14:28:22 +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` ...
Christian Heimes5b5e81c2007-12-31 16:14:33 +000036:keyword:`elif` ... sequence is a substitute for the ``switch`` or
37``case`` statements found in other languages.
Georg Brandl116aa622007-08-15 14:28:22 +000038
39
40.. _tut-for:
41
42:keyword:`for` Statements
43=========================
44
45.. index::
46 statement: for
Georg Brandl116aa622007-08-15 14:28:22 +000047
48The :keyword:`for` statement in Python differs a bit from what you may be used
49to in C or Pascal. Rather than always iterating over an arithmetic progression
50of numbers (like in Pascal), or giving the user the ability to define both the
51iteration step and halting condition (as C), Python's :keyword:`for` statement
52iterates over the items of any sequence (a list or a string), in the order that
53they appear in the sequence. For example (no pun intended):
54
Christian Heimes5b5e81c2007-12-31 16:14:33 +000055.. One suggestion was to give a real C example here, but that may only serve to
56 confuse non-C programmers.
Georg Brandl116aa622007-08-15 14:28:22 +000057
58::
59
60 >>> # Measure some strings:
Chris Jerdonek4fab8f02012-10-15 19:44:47 -070061 ... words = ['cat', 'window', 'defenestrate']
62 >>> for w in words:
63 ... print(w, len(w))
Georg Brandl48310cd2009-01-03 21:18:54 +000064 ...
Georg Brandl116aa622007-08-15 14:28:22 +000065 cat 3
66 window 6
67 defenestrate 12
68
Chris Jerdonek4fab8f02012-10-15 19:44:47 -070069If you need to modify the sequence you are iterating over while inside the loop
70(for example to duplicate selected items), it is recommended that you first
71make a copy. Iterating over a sequence does not implicitly make a copy. The
72slice notation makes this especially convenient::
Georg Brandl116aa622007-08-15 14:28:22 +000073
Chris Jerdonek4fab8f02012-10-15 19:44:47 -070074 >>> for w in words[:]: # Loop over a slice copy of the entire list.
75 ... if len(w) > 6:
76 ... words.insert(0, w)
Georg Brandl48310cd2009-01-03 21:18:54 +000077 ...
Chris Jerdonek4fab8f02012-10-15 19:44:47 -070078 >>> words
Georg Brandl116aa622007-08-15 14:28:22 +000079 ['defenestrate', 'cat', 'window', 'defenestrate']
80
81
82.. _tut-range:
83
84The :func:`range` Function
85==========================
86
87If you do need to iterate over a sequence of numbers, the built-in function
Guido van Rossum0616b792007-08-31 03:25:11 +000088:func:`range` comes in handy. It generates arithmetic progressions::
Georg Brandl116aa622007-08-15 14:28:22 +000089
Guido van Rossum0616b792007-08-31 03:25:11 +000090 >>> for i in range(5):
91 ... print(i)
92 ...
93 0
94 1
95 2
96 3
97 4
Georg Brandl48310cd2009-01-03 21:18:54 +000098
Georg Brandl7d821062010-06-27 10:59:19 +000099The given end point is never part of the generated sequence; ``range(10)`` generates
Guido van Rossum0616b792007-08-31 03:25:11 +000010010 values, the legal indices for items of a sequence of length 10. It
Georg Brandl116aa622007-08-15 14:28:22 +0000101is possible to let the range start at another number, or to specify a different
102increment (even negative; sometimes this is called the 'step')::
103
Georg Brandl48310cd2009-01-03 21:18:54 +0000104 range(5, 10)
Guido van Rossum0616b792007-08-31 03:25:11 +0000105 5 through 9
106
Georg Brandl48310cd2009-01-03 21:18:54 +0000107 range(0, 10, 3)
Guido van Rossum0616b792007-08-31 03:25:11 +0000108 0, 3, 6, 9
109
Georg Brandl48310cd2009-01-03 21:18:54 +0000110 range(-10, -100, -30)
Guido van Rossum0616b792007-08-31 03:25:11 +0000111 -10, -40, -70
Georg Brandl116aa622007-08-15 14:28:22 +0000112
Georg Brandlaf265f42008-12-07 15:06:20 +0000113To iterate over the indices of a sequence, you can combine :func:`range` and
114:func:`len` as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000115
116 >>> a = ['Mary', 'had', 'a', 'little', 'lamb']
117 >>> for i in range(len(a)):
Guido van Rossum0616b792007-08-31 03:25:11 +0000118 ... print(i, a[i])
Georg Brandl48310cd2009-01-03 21:18:54 +0000119 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000120 0 Mary
121 1 had
122 2 a
123 3 little
124 4 lamb
125
Georg Brandlaf265f42008-12-07 15:06:20 +0000126In most such cases, however, it is convenient to use the :func:`enumerate`
127function, see :ref:`tut-loopidioms`.
128
Guido van Rossum0616b792007-08-31 03:25:11 +0000129A strange thing happens if you just print a range::
130
131 >>> print(range(10))
132 range(0, 10)
133
134In many ways the object returned by :func:`range` behaves as if it is a list,
Georg Brandl48310cd2009-01-03 21:18:54 +0000135but in fact it isn't. It is an object which returns the successive items of
136the desired sequence when you iterate over it, but it doesn't really make
137the list, thus saving space.
Guido van Rossum0616b792007-08-31 03:25:11 +0000138
Georg Brandl48310cd2009-01-03 21:18:54 +0000139We say such an object is *iterable*, that is, suitable as a target for
140functions and constructs that expect something from which they can
Guido van Rossum0616b792007-08-31 03:25:11 +0000141obtain successive items until the supply is exhausted. We have seen that
142the :keyword:`for` statement is such an *iterator*. The function :func:`list`
143is another; it creates lists from iterables::
144
145
146 >>> list(range(5))
147 [0, 1, 2, 3, 4]
148
149Later we will see more functions that return iterables and take iterables as argument.
Georg Brandl116aa622007-08-15 14:28:22 +0000150
Georg Brandlaf265f42008-12-07 15:06:20 +0000151
Georg Brandl116aa622007-08-15 14:28:22 +0000152.. _tut-break:
153
154:keyword:`break` and :keyword:`continue` Statements, and :keyword:`else` Clauses on Loops
155=========================================================================================
156
157The :keyword:`break` statement, like in C, breaks out of the smallest enclosing
158:keyword:`for` or :keyword:`while` loop.
159
Georg Brandl116aa622007-08-15 14:28:22 +0000160Loop statements may have an ``else`` clause; it is executed when the loop
161terminates through exhaustion of the list (with :keyword:`for`) or when the
162condition becomes false (with :keyword:`while`), but not when the loop is
163terminated by a :keyword:`break` statement. This is exemplified by the
164following loop, which searches for prime numbers::
165
166 >>> for n in range(2, 10):
167 ... for x in range(2, n):
168 ... if n % x == 0:
Georg Brandlb03c1d92008-05-01 18:06:50 +0000169 ... print(n, 'equals', x, '*', n//x)
Georg Brandl116aa622007-08-15 14:28:22 +0000170 ... break
171 ... else:
172 ... # loop fell through without finding a factor
Guido van Rossum0616b792007-08-31 03:25:11 +0000173 ... print(n, 'is a prime number')
Georg Brandl48310cd2009-01-03 21:18:54 +0000174 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000175 2 is a prime number
176 3 is a prime number
177 4 equals 2 * 2
178 5 is a prime number
179 6 equals 2 * 3
180 7 is a prime number
181 8 equals 2 * 4
182 9 equals 3 * 3
183
Georg Brandlbdbdfb12011-08-08 21:45:13 +0200184(Yes, this is the correct code. Look closely: the ``else`` clause belongs to
185the :keyword:`for` loop, **not** the :keyword:`if` statement.)
186
Nick Coghlana3a164a2012-06-07 22:41:34 +1000187When used with a loop, the ``else`` clause has more in common with the
188``else`` clause of a :keyword:`try` statement than it does that of
189:keyword:`if` statements: a :keyword:`try` statement's ``else`` clause runs
190when no exception occurs, and a loop's ``else`` clause runs when no ``break``
191occurs. For more on the :keyword:`try` statement and exceptions, see
192:ref:`tut-handling`.
193
Senthil Kumaran1ef9caa2012-08-12 12:01:47 -0700194The :keyword:`continue` statement, also borrowed from C, continues with the next
195iteration of the loop::
196
197 >>> for num in range(2, 10):
Eli Bendersky31a11902012-08-18 09:50:09 +0300198 ... if num % 2 == 0:
Senthil Kumaran1ef9caa2012-08-12 12:01:47 -0700199 ... print("Found an even number", num)
200 ... continue
201 ... print("Found a number", num)
202 Found an even number 2
203 Found a number 3
204 Found an even number 4
205 Found a number 5
206 Found an even number 6
207 Found a number 7
208 Found an even number 8
209 Found a number 9
Georg Brandl116aa622007-08-15 14:28:22 +0000210
211.. _tut-pass:
212
213:keyword:`pass` Statements
214==========================
215
216The :keyword:`pass` statement does nothing. It can be used when a statement is
217required syntactically but the program requires no action. For example::
218
219 >>> while True:
Georg Brandl5d955ed2008-09-13 17:18:21 +0000220 ... pass # Busy-wait for keyboard interrupt (Ctrl+C)
Georg Brandl48310cd2009-01-03 21:18:54 +0000221 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000222
Benjamin Peterson92035012008-12-27 16:00:54 +0000223This is commonly used for creating minimal classes::
Georg Brandla971c652008-11-07 09:39:56 +0000224
Benjamin Peterson92035012008-12-27 16:00:54 +0000225 >>> class MyEmptyClass:
Georg Brandla971c652008-11-07 09:39:56 +0000226 ... pass
Benjamin Peterson92035012008-12-27 16:00:54 +0000227 ...
Georg Brandla971c652008-11-07 09:39:56 +0000228
229Another place :keyword:`pass` can be used is as a place-holder for a function or
Benjamin Peterson92035012008-12-27 16:00:54 +0000230conditional body when you are working on new code, allowing you to keep thinking
231at a more abstract level. The :keyword:`pass` is silently ignored::
Georg Brandla971c652008-11-07 09:39:56 +0000232
233 >>> def initlog(*args):
Benjamin Peterson92035012008-12-27 16:00:54 +0000234 ... pass # Remember to implement this!
Georg Brandl48310cd2009-01-03 21:18:54 +0000235 ...
Georg Brandla971c652008-11-07 09:39:56 +0000236
Georg Brandl116aa622007-08-15 14:28:22 +0000237.. _tut-functions:
238
239Defining Functions
240==================
241
242We can create a function that writes the Fibonacci series to an arbitrary
243boundary::
244
245 >>> def fib(n): # write Fibonacci series up to n
246 ... """Print a Fibonacci series up to n."""
247 ... a, b = 0, 1
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000248 ... while a < n:
249 ... print(a, end=' ')
Georg Brandl116aa622007-08-15 14:28:22 +0000250 ... a, b = b, a+b
Guido van Rossum0616b792007-08-31 03:25:11 +0000251 ... print()
Georg Brandl48310cd2009-01-03 21:18:54 +0000252 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000253 >>> # Now call the function we just defined:
254 ... fib(2000)
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000255 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257.. index::
258 single: documentation strings
259 single: docstrings
260 single: strings, documentation
261
262The keyword :keyword:`def` introduces a function *definition*. It must be
263followed by the function name and the parenthesized list of formal parameters.
264The statements that form the body of the function start at the next line, and
Georg Brandl5d955ed2008-09-13 17:18:21 +0000265must be indented.
Georg Brandl116aa622007-08-15 14:28:22 +0000266
Georg Brandl5d955ed2008-09-13 17:18:21 +0000267The first statement of the function body can optionally be a string literal;
268this string literal is the function's documentation string, or :dfn:`docstring`.
269(More about docstrings can be found in the section :ref:`tut-docstrings`.)
Georg Brandl116aa622007-08-15 14:28:22 +0000270There are tools which use docstrings to automatically produce online or printed
271documentation, or to let the user interactively browse through code; it's good
Georg Brandl5d955ed2008-09-13 17:18:21 +0000272practice to include docstrings in code that you write, so make a habit of it.
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274The *execution* of a function introduces a new symbol table used for the local
275variables of the function. More precisely, all variable assignments in a
276function store the value in the local symbol table; whereas variable references
Georg Brandl86def6c2008-01-21 20:36:10 +0000277first look in the local symbol table, then in the local symbol tables of
278enclosing functions, then in the global symbol table, and finally in the table
279of built-in names. Thus, global variables cannot be directly assigned a value
280within a function (unless named in a :keyword:`global` statement), although they
281may be referenced.
Georg Brandl116aa622007-08-15 14:28:22 +0000282
283The actual parameters (arguments) to a function call are introduced in the local
284symbol table of the called function when it is called; thus, arguments are
285passed using *call by value* (where the *value* is always an object *reference*,
286not the value of the object). [#]_ When a function calls another function, a new
287local symbol table is created for that call.
288
289A function definition introduces the function name in the current symbol table.
290The value of the function name has a type that is recognized by the interpreter
291as a user-defined function. This value can be assigned to another name which
292can then also be used as a function. This serves as a general renaming
293mechanism::
294
295 >>> fib
296 <function fib at 10042ed0>
297 >>> f = fib
298 >>> f(100)
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000299 0 1 1 2 3 5 8 13 21 34 55 89
Georg Brandl116aa622007-08-15 14:28:22 +0000300
Georg Brandl5d955ed2008-09-13 17:18:21 +0000301Coming from other languages, you might object that ``fib`` is not a function but
302a procedure since it doesn't return a value. In fact, even functions without a
303:keyword:`return` statement do return a value, albeit a rather boring one. This
304value is called ``None`` (it's a built-in name). Writing the value ``None`` is
305normally suppressed by the interpreter if it would be the only value written.
306You can see it if you really want to using :func:`print`::
Georg Brandl116aa622007-08-15 14:28:22 +0000307
Georg Brandl9afde1c2007-11-01 20:32:30 +0000308 >>> fib(0)
Guido van Rossum0616b792007-08-31 03:25:11 +0000309 >>> print(fib(0))
Georg Brandl116aa622007-08-15 14:28:22 +0000310 None
311
312It is simple to write a function that returns a list of the numbers of the
313Fibonacci series, instead of printing it::
314
315 >>> def fib2(n): # return Fibonacci series up to n
316 ... """Return a list containing the Fibonacci series up to n."""
317 ... result = []
318 ... a, b = 0, 1
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000319 ... while a < n:
320 ... result.append(a) # see below
Georg Brandl116aa622007-08-15 14:28:22 +0000321 ... a, b = b, a+b
322 ... return result
Georg Brandl48310cd2009-01-03 21:18:54 +0000323 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000324 >>> f100 = fib2(100) # call it
325 >>> f100 # write the result
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000326 [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
Georg Brandl116aa622007-08-15 14:28:22 +0000327
328This example, as usual, demonstrates some new Python features:
329
330* The :keyword:`return` statement returns with a value from a function.
331 :keyword:`return` without an expression argument returns ``None``. Falling off
Georg Brandl5d955ed2008-09-13 17:18:21 +0000332 the end of a function also returns ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000333
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000334* The statement ``result.append(a)`` calls a *method* of the list object
Georg Brandl116aa622007-08-15 14:28:22 +0000335 ``result``. A method is a function that 'belongs' to an object and is named
336 ``obj.methodname``, where ``obj`` is some object (this may be an expression),
337 and ``methodname`` is the name of a method that is defined by the object's type.
338 Different types define different methods. Methods of different types may have
339 the same name without causing ambiguity. (It is possible to define your own
Georg Brandlc6c31782009-06-08 13:41:29 +0000340 object types and methods, using *classes*, see :ref:`tut-classes`)
Georg Brandl116aa622007-08-15 14:28:22 +0000341 The method :meth:`append` shown in the example is defined for list objects; it
342 adds a new element at the end of the list. In this example it is equivalent to
Mark Dickinsonc099ee22009-11-23 16:41:41 +0000343 ``result = result + [a]``, but more efficient.
Georg Brandl116aa622007-08-15 14:28:22 +0000344
345
346.. _tut-defining:
347
348More on Defining Functions
349==========================
350
351It is also possible to define functions with a variable number of arguments.
352There are three forms, which can be combined.
353
354
355.. _tut-defaultargs:
356
357Default Argument Values
358-----------------------
359
360The most useful form is to specify a default value for one or more arguments.
361This creates a function that can be called with fewer arguments than it is
362defined to allow. For example::
363
Georg Brandl116aa622007-08-15 14:28:22 +0000364 def ask_ok(prompt, retries=4, complaint='Yes or no, please!'):
365 while True:
Georg Brandle9af2842007-08-17 05:54:09 +0000366 ok = input(prompt)
Georg Brandlc6c31782009-06-08 13:41:29 +0000367 if ok in ('y', 'ye', 'yes'):
368 return True
369 if ok in ('n', 'no', 'nop', 'nope'):
370 return False
Georg Brandl116aa622007-08-15 14:28:22 +0000371 retries = retries - 1
Collin Winter58721bc2007-09-10 00:39:52 +0000372 if retries < 0:
Andrew Svetlov08af0002014-04-01 01:13:30 +0300373 raise OSError('uncooperative user')
Guido van Rossum0616b792007-08-31 03:25:11 +0000374 print(complaint)
Georg Brandl116aa622007-08-15 14:28:22 +0000375
Georg Brandlc6c31782009-06-08 13:41:29 +0000376This function can be called in several ways:
377
378* giving only the mandatory argument:
379 ``ask_ok('Do you really want to quit?')``
380* giving one of the optional arguments:
381 ``ask_ok('OK to overwrite the file?', 2)``
382* or even giving all arguments:
383 ``ask_ok('OK to overwrite the file?', 2, 'Come on, only yes or no!')``
Georg Brandl116aa622007-08-15 14:28:22 +0000384
385This example also introduces the :keyword:`in` keyword. This tests whether or
386not a sequence contains a certain value.
387
388The default values are evaluated at the point of function definition in the
389*defining* scope, so that ::
390
391 i = 5
392
393 def f(arg=i):
Guido van Rossum0616b792007-08-31 03:25:11 +0000394 print(arg)
Georg Brandl116aa622007-08-15 14:28:22 +0000395
396 i = 6
397 f()
398
399will print ``5``.
400
401**Important warning:** The default value is evaluated only once. This makes a
402difference when the default is a mutable object such as a list, dictionary, or
403instances of most classes. For example, the following function accumulates the
404arguments passed to it on subsequent calls::
405
406 def f(a, L=[]):
407 L.append(a)
408 return L
409
Guido van Rossum0616b792007-08-31 03:25:11 +0000410 print(f(1))
411 print(f(2))
412 print(f(3))
Georg Brandl116aa622007-08-15 14:28:22 +0000413
414This will print ::
415
416 [1]
417 [1, 2]
418 [1, 2, 3]
419
420If you don't want the default to be shared between subsequent calls, you can
421write the function like this instead::
422
423 def f(a, L=None):
424 if L is None:
425 L = []
426 L.append(a)
427 return L
428
429
430.. _tut-keywordargs:
431
432Keyword Arguments
433-----------------
434
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200435Functions can also be called using :term:`keyword arguments <keyword argument>`
436of the form ``kwarg=value``. For instance, the following function::
Georg Brandl116aa622007-08-15 14:28:22 +0000437
438 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'):
Georg Brandle4ac7502007-09-03 07:10:24 +0000439 print("-- This parrot wouldn't", action, end=' ')
Guido van Rossum0616b792007-08-31 03:25:11 +0000440 print("if you put", voltage, "volts through it.")
441 print("-- Lovely plumage, the", type)
442 print("-- It's", state, "!")
Georg Brandl116aa622007-08-15 14:28:22 +0000443
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200444accepts one required argument (``voltage``) and three optional arguments
445(``state``, ``action``, and ``type``). This function can be called in any
446of the following ways::
Georg Brandl116aa622007-08-15 14:28:22 +0000447
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200448 parrot(1000) # 1 positional argument
449 parrot(voltage=1000) # 1 keyword argument
450 parrot(voltage=1000000, action='VOOOOOM') # 2 keyword arguments
451 parrot(action='VOOOOOM', voltage=1000000) # 2 keyword arguments
452 parrot('a million', 'bereft of life', 'jump') # 3 positional arguments
453 parrot('a thousand', state='pushing up the daisies') # 1 positional, 1 keyword
Georg Brandl116aa622007-08-15 14:28:22 +0000454
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200455but all the following calls would be invalid::
Georg Brandl116aa622007-08-15 14:28:22 +0000456
457 parrot() # required argument missing
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200458 parrot(voltage=5.0, 'dead') # non-keyword argument after a keyword argument
459 parrot(110, voltage=220) # duplicate value for the same argument
460 parrot(actor='John Cleese') # unknown keyword argument
Georg Brandl116aa622007-08-15 14:28:22 +0000461
Ezio Melotti7b7e39a2011-12-13 15:49:22 +0200462In a function call, keyword arguments must follow positional arguments.
463All the keyword arguments passed must match one of the arguments
464accepted by the function (e.g. ``actor`` is not a valid argument for the
465``parrot`` function), and their order is not important. This also includes
466non-optional arguments (e.g. ``parrot(voltage=1000)`` is valid too).
467No argument may receive a value more than once.
468Here's an example that fails due to this restriction::
Georg Brandl116aa622007-08-15 14:28:22 +0000469
470 >>> def function(a):
471 ... pass
Georg Brandl48310cd2009-01-03 21:18:54 +0000472 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000473 >>> function(0, a=0)
474 Traceback (most recent call last):
475 File "<stdin>", line 1, in ?
476 TypeError: function() got multiple values for keyword argument 'a'
477
478When a final formal parameter of the form ``**name`` is present, it receives a
479dictionary (see :ref:`typesmapping`) containing all keyword arguments except for
480those corresponding to a formal parameter. This may be combined with a formal
481parameter of the form ``*name`` (described in the next subsection) which
482receives a tuple containing the positional arguments beyond the formal parameter
483list. (``*name`` must occur before ``**name``.) For example, if we define a
484function like this::
485
486 def cheeseshop(kind, *arguments, **keywords):
Georg Brandl5d955ed2008-09-13 17:18:21 +0000487 print("-- Do you have any", kind, "?")
Guido van Rossum0616b792007-08-31 03:25:11 +0000488 print("-- I'm sorry, we're all out of", kind)
Georg Brandl70543ac2010-10-15 15:32:05 +0000489 for arg in arguments:
490 print(arg)
Georg Brandl5d955ed2008-09-13 17:18:21 +0000491 print("-" * 40)
Neal Norwitze0906d12007-08-31 03:46:28 +0000492 keys = sorted(keywords.keys())
Georg Brandl70543ac2010-10-15 15:32:05 +0000493 for kw in keys:
494 print(kw, ":", keywords[kw])
Georg Brandl116aa622007-08-15 14:28:22 +0000495
496It could be called like this::
497
Georg Brandl5d955ed2008-09-13 17:18:21 +0000498 cheeseshop("Limburger", "It's very runny, sir.",
Georg Brandl116aa622007-08-15 14:28:22 +0000499 "It's really very, VERY runny, sir.",
Georg Brandl5d955ed2008-09-13 17:18:21 +0000500 shopkeeper="Michael Palin",
501 client="John Cleese",
502 sketch="Cheese Shop Sketch")
Georg Brandl116aa622007-08-15 14:28:22 +0000503
504and of course it would print::
505
506 -- Do you have any Limburger ?
507 -- I'm sorry, we're all out of Limburger
508 It's very runny, sir.
509 It's really very, VERY runny, sir.
510 ----------------------------------------
511 client : John Cleese
512 shopkeeper : Michael Palin
513 sketch : Cheese Shop Sketch
514
Georg Brandla6fa2722008-01-06 17:25:36 +0000515Note that the list of keyword argument names is created by sorting the result
516of the keywords dictionary's ``keys()`` method before printing its contents;
517if this is not done, the order in which the arguments are printed is undefined.
Georg Brandl116aa622007-08-15 14:28:22 +0000518
519.. _tut-arbitraryargs:
520
521Arbitrary Argument Lists
522------------------------
523
Christian Heimesdae2a892008-04-19 00:55:37 +0000524.. index::
Georg Brandl48310cd2009-01-03 21:18:54 +0000525 statement: *
Christian Heimesdae2a892008-04-19 00:55:37 +0000526
Georg Brandl116aa622007-08-15 14:28:22 +0000527Finally, the least frequently used option is to specify that a function can be
528called with an arbitrary number of arguments. These arguments will be wrapped
Georg Brandl5d955ed2008-09-13 17:18:21 +0000529up in a tuple (see :ref:`tut-tuples`). Before the variable number of arguments,
530zero or more normal arguments may occur. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000531
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000532 def write_multiple_items(file, separator, *args):
533 file.write(separator.join(args))
Georg Brandl116aa622007-08-15 14:28:22 +0000534
Georg Brandl48310cd2009-01-03 21:18:54 +0000535
Guido van Rossum0616b792007-08-31 03:25:11 +0000536Normally, these ``variadic`` arguments will be last in the list of formal
Georg Brandl48310cd2009-01-03 21:18:54 +0000537parameters, because they scoop up all remaining input arguments that are
Guido van Rossum0616b792007-08-31 03:25:11 +0000538passed to the function. Any formal parameters which occur after the ``*args``
Georg Brandl48310cd2009-01-03 21:18:54 +0000539parameter are 'keyword-only' arguments, meaning that they can only be used as
Georg Brandle4ac7502007-09-03 07:10:24 +0000540keywords rather than positional arguments. ::
Georg Brandl48310cd2009-01-03 21:18:54 +0000541
Guido van Rossum0616b792007-08-31 03:25:11 +0000542 >>> def concat(*args, sep="/"):
543 ... return sep.join(args)
544 ...
545 >>> concat("earth", "mars", "venus")
546 'earth/mars/venus'
547 >>> concat("earth", "mars", "venus", sep=".")
548 'earth.mars.venus'
Georg Brandl116aa622007-08-15 14:28:22 +0000549
550.. _tut-unpacking-arguments:
551
552Unpacking Argument Lists
553------------------------
554
555The reverse situation occurs when the arguments are already in a list or tuple
556but need to be unpacked for a function call requiring separate positional
557arguments. For instance, the built-in :func:`range` function expects separate
558*start* and *stop* arguments. If they are not available separately, write the
559function call with the ``*``\ -operator to unpack the arguments out of a list
560or tuple::
561
Guido van Rossum0616b792007-08-31 03:25:11 +0000562 >>> list(range(3, 6)) # normal call with separate arguments
Georg Brandl116aa622007-08-15 14:28:22 +0000563 [3, 4, 5]
564 >>> args = [3, 6]
Guido van Rossum0616b792007-08-31 03:25:11 +0000565 >>> list(range(*args)) # call with arguments unpacked from a list
Georg Brandl116aa622007-08-15 14:28:22 +0000566 [3, 4, 5]
567
Christian Heimesdae2a892008-04-19 00:55:37 +0000568.. index::
569 statement: **
570
Georg Brandl116aa622007-08-15 14:28:22 +0000571In the same fashion, dictionaries can deliver keyword arguments with the ``**``\
572-operator::
573
574 >>> def parrot(voltage, state='a stiff', action='voom'):
Georg Brandle4ac7502007-09-03 07:10:24 +0000575 ... print("-- This parrot wouldn't", action, end=' ')
Guido van Rossum0616b792007-08-31 03:25:11 +0000576 ... print("if you put", voltage, "volts through it.", end=' ')
577 ... print("E's", state, "!")
Georg Brandl116aa622007-08-15 14:28:22 +0000578 ...
579 >>> d = {"voltage": "four million", "state": "bleedin' demised", "action": "VOOM"}
580 >>> parrot(**d)
581 -- This parrot wouldn't VOOM if you put four million volts through it. E's bleedin' demised !
582
583
584.. _tut-lambda:
585
Georg Brandlde5aff12013-10-06 10:22:45 +0200586Lambda Expressions
587------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000588
Georg Brandlde5aff12013-10-06 10:22:45 +0200589Small anonymous functions can be created with the :keyword:`lambda` keyword.
590This function returns the sum of its two arguments: ``lambda a, b: a+b``.
Georg Brandl242e6a02013-10-06 10:28:39 +0200591Lambda functions can be used wherever function objects are required. They are
Georg Brandlde5aff12013-10-06 10:22:45 +0200592syntactically restricted to a single expression. Semantically, they are just
593syntactic sugar for a normal function definition. Like nested function
594definitions, lambda functions can reference variables from the containing
595scope::
Georg Brandl116aa622007-08-15 14:28:22 +0000596
597 >>> def make_incrementor(n):
598 ... return lambda x: x + n
599 ...
600 >>> f = make_incrementor(42)
601 >>> f(0)
602 42
603 >>> f(1)
604 43
605
Georg Brandlde5aff12013-10-06 10:22:45 +0200606The above example uses a lambda expression to return a function. Another use
607is to pass a small function as an argument::
608
609 >>> pairs = [(1, 'one'), (2, 'two'), (3, 'three'), (4, 'four')]
610 >>> pairs.sort(key=lambda pair: pair[1])
611 >>> pairs
612 [(4, 'four'), (1, 'one'), (3, 'three'), (2, 'two')]
613
Georg Brandl116aa622007-08-15 14:28:22 +0000614
615.. _tut-docstrings:
616
617Documentation Strings
618---------------------
619
620.. index::
621 single: docstrings
622 single: documentation strings
623 single: strings, documentation
624
Guido van Rossum0616b792007-08-31 03:25:11 +0000625Here are some conventions about the content and formatting of documentation
Georg Brandl48310cd2009-01-03 21:18:54 +0000626strings.
Georg Brandl116aa622007-08-15 14:28:22 +0000627
628The first line should always be a short, concise summary of the object's
629purpose. For brevity, it should not explicitly state the object's name or type,
630since these are available by other means (except if the name happens to be a
631verb describing a function's operation). This line should begin with a capital
632letter and end with a period.
633
634If there are more lines in the documentation string, the second line should be
635blank, visually separating the summary from the rest of the description. The
636following lines should be one or more paragraphs describing the object's calling
637conventions, its side effects, etc.
638
639The Python parser does not strip indentation from multi-line string literals in
640Python, so tools that process documentation have to strip indentation if
641desired. This is done using the following convention. The first non-blank line
642*after* the first line of the string determines the amount of indentation for
643the entire documentation string. (We can't use the first line since it is
644generally adjacent to the string's opening quotes so its indentation is not
645apparent in the string literal.) Whitespace "equivalent" to this indentation is
646then stripped from the start of all lines of the string. Lines that are
647indented less should not occur, but if they occur all their leading whitespace
648should be stripped. Equivalence of whitespace should be tested after expansion
649of tabs (to 8 spaces, normally).
650
651Here is an example of a multi-line docstring::
652
653 >>> def my_function():
654 ... """Do nothing, but document it.
Georg Brandl48310cd2009-01-03 21:18:54 +0000655 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000656 ... No, really, it doesn't do anything.
657 ... """
658 ... pass
Georg Brandl48310cd2009-01-03 21:18:54 +0000659 ...
Guido van Rossum0616b792007-08-31 03:25:11 +0000660 >>> print(my_function.__doc__)
Georg Brandl116aa622007-08-15 14:28:22 +0000661 Do nothing, but document it.
662
663 No, really, it doesn't do anything.
664
665
Andrew Svetlov1491cbd2012-11-01 21:26:55 +0200666.. _tut-annotations:
667
668Function Annotations
669--------------------
670
671.. sectionauthor:: Zachary Ware <zachary.ware@gmail.com>
672.. index::
673 pair: function; annotations
674 single: -> (return annotation assignment)
675
676:ref:`Function annotations <function>` are completely optional,
677arbitrary metadata information about user-defined functions. Neither Python
678itself nor the standard library use function annotations in any way; this
679section just shows the syntax. Third-party projects are free to use function
680annotations for documentation, type checking, and other uses.
681
682Annotations are stored in the :attr:`__annotations__` attribute of the function
683as a dictionary and have no effect on any other part of the function. Parameter
684annotations are defined by a colon after the parameter name, followed by an
685expression evaluating to the value of the annotation. Return annotations are
686defined by a literal ``->``, followed by an expression, between the parameter
687list and the colon denoting the end of the :keyword:`def` statement. The
688following example has a positional argument, a keyword argument, and the return
689value annotated with nonsense::
690
691 >>> def f(ham: 42, eggs: int = 'spam') -> "Nothing to see here":
692 ... print("Annotations:", f.__annotations__)
693 ... print("Arguments:", ham, eggs)
694 ...
695 >>> f('wonderful')
696 Annotations: {'eggs': <class 'int'>, 'return': 'Nothing to see here', 'ham': 42}
697 Arguments: wonderful spam
698
699
Christian Heimes043d6f62008-01-07 17:19:16 +0000700.. _tut-codingstyle:
701
702Intermezzo: Coding Style
703========================
704
705.. sectionauthor:: Georg Brandl <georg@python.org>
706.. index:: pair: coding; style
707
708Now that you are about to write longer, more complex pieces of Python, it is a
709good time to talk about *coding style*. Most languages can be written (or more
710concise, *formatted*) in different styles; some are more readable than others.
711Making it easy for others to read your code is always a good idea, and adopting
712a nice coding style helps tremendously for that.
713
Christian Heimesdae2a892008-04-19 00:55:37 +0000714For Python, :pep:`8` has emerged as the style guide that most projects adhere to;
Christian Heimes043d6f62008-01-07 17:19:16 +0000715it promotes a very readable and eye-pleasing coding style. Every Python
716developer should read it at some point; here are the most important points
717extracted for you:
718
719* Use 4-space indentation, and no tabs.
720
721 4 spaces are a good compromise between small indentation (allows greater
722 nesting depth) and large indentation (easier to read). Tabs introduce
723 confusion, and are best left out.
724
725* Wrap lines so that they don't exceed 79 characters.
726
727 This helps users with small displays and makes it possible to have several
728 code files side-by-side on larger displays.
729
730* Use blank lines to separate functions and classes, and larger blocks of
731 code inside functions.
732
733* When possible, put comments on a line of their own.
734
735* Use docstrings.
736
737* Use spaces around operators and after commas, but not directly inside
738 bracketing constructs: ``a = f(1, 2) + g(3, 4)``.
739
740* Name your classes and functions consistently; the convention is to use
741 ``CamelCase`` for classes and ``lower_case_with_underscores`` for functions
Georg Brandl5d955ed2008-09-13 17:18:21 +0000742 and methods. Always use ``self`` as the name for the first method argument
743 (see :ref:`tut-firstclasses` for more on classes and methods).
Christian Heimes043d6f62008-01-07 17:19:16 +0000744
745* Don't use fancy encodings if your code is meant to be used in international
Georg Brandl7ae90dd2009-06-08 18:59:09 +0000746 environments. Python's default, UTF-8, or even plain ASCII work best in any
747 case.
748
749* Likewise, don't use non-ASCII characters in identifiers if there is only the
750 slightest chance people speaking a different language will read or maintain
751 the code.
Christian Heimes043d6f62008-01-07 17:19:16 +0000752
Georg Brandl116aa622007-08-15 14:28:22 +0000753
754.. rubric:: Footnotes
755
Christian Heimes043d6f62008-01-07 17:19:16 +0000756.. [#] Actually, *call by object reference* would be a better description,
757 since if a mutable object is passed, the caller will see any changes the
758 callee makes to it (items inserted into a list).