blob: ebb18ca0847725258e117562774ed8d0a5f5e0f3 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _compound:
2
3*******************
4Compound statements
5*******************
6
7.. index:: pair: compound; statement
8
9Compound statements contain (groups of) other statements; they affect or control
10the execution of those other statements in some way. In general, compound
11statements span multiple lines, although in simple incarnations a whole compound
12statement may be contained in one line.
13
14The :keyword:`if`, :keyword:`while` and :keyword:`for` statements implement
15traditional control flow constructs. :keyword:`try` specifies exception
Georg Brandl02c30562007-09-07 17:52:53 +000016handlers and/or cleanup code for a group of statements, while the
17:keyword:`with` statement allows the execution of initialization and
18finalization code around a block of code. Function and class definitions are
19also syntactically compound statements.
Georg Brandl116aa622007-08-15 14:28:22 +000020
21.. index::
22 single: clause
23 single: suite
24
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070025A compound statement consists of one or more 'clauses.' A clause consists of a
Georg Brandl116aa622007-08-15 14:28:22 +000026header and a 'suite.' The clause headers of a particular compound statement are
27all at the same indentation level. Each clause header begins with a uniquely
28identifying keyword and ends with a colon. A suite is a group of statements
29controlled by a clause. A suite can be one or more semicolon-separated simple
30statements on the same line as the header, following the header's colon, or it
31can be one or more indented statements on subsequent lines. Only the latter
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070032form of a suite can contain nested compound statements; the following is illegal,
Georg Brandl116aa622007-08-15 14:28:22 +000033mostly because it wouldn't be clear to which :keyword:`if` clause a following
Georg Brandl02c30562007-09-07 17:52:53 +000034:keyword:`else` clause would belong::
Georg Brandl116aa622007-08-15 14:28:22 +000035
Georg Brandl6911e3c2007-09-04 07:15:32 +000036 if test1: if test2: print(x)
Georg Brandl116aa622007-08-15 14:28:22 +000037
38Also note that the semicolon binds tighter than the colon in this context, so
Georg Brandl6911e3c2007-09-04 07:15:32 +000039that in the following example, either all or none of the :func:`print` calls are
40executed::
Georg Brandl116aa622007-08-15 14:28:22 +000041
Georg Brandl6911e3c2007-09-04 07:15:32 +000042 if x < y < z: print(x); print(y); print(z)
Georg Brandl116aa622007-08-15 14:28:22 +000043
44Summarizing:
45
46.. productionlist::
47 compound_stmt: `if_stmt`
48 : | `while_stmt`
49 : | `for_stmt`
50 : | `try_stmt`
51 : | `with_stmt`
52 : | `funcdef`
53 : | `classdef`
Yury Selivanovf3e40fa2015-05-21 11:50:30 -040054 : | `async_with_stmt`
55 : | `async_for_stmt`
56 : | `async_funcdef`
Georg Brandl116aa622007-08-15 14:28:22 +000057 suite: `stmt_list` NEWLINE | NEWLINE INDENT `statement`+ DEDENT
58 statement: `stmt_list` NEWLINE | `compound_stmt`
59 stmt_list: `simple_stmt` (";" `simple_stmt`)* [";"]
60
61.. index::
62 single: NEWLINE token
63 single: DEDENT token
64 pair: dangling; else
65
66Note that statements always end in a ``NEWLINE`` possibly followed by a
Georg Brandl02c30562007-09-07 17:52:53 +000067``DEDENT``. Also note that optional continuation clauses always begin with a
Georg Brandl116aa622007-08-15 14:28:22 +000068keyword that cannot start a statement, thus there are no ambiguities (the
69'dangling :keyword:`else`' problem is solved in Python by requiring nested
70:keyword:`if` statements to be indented).
71
72The formatting of the grammar rules in the following sections places each clause
73on a separate line for clarity.
74
75
76.. _if:
Christian Heimes5b5e81c2007-12-31 16:14:33 +000077.. _elif:
78.. _else:
Georg Brandl116aa622007-08-15 14:28:22 +000079
80The :keyword:`if` statement
81===========================
82
Christian Heimesfaf2f632008-01-06 16:59:19 +000083.. index::
84 statement: if
85 keyword: elif
86 keyword: else
Georg Brandl02c30562007-09-07 17:52:53 +000087 keyword: elif
88 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +000089
90The :keyword:`if` statement is used for conditional execution:
91
92.. productionlist::
93 if_stmt: "if" `expression` ":" `suite`
Andrés Delfinocaccca782018-07-07 17:24:46 -030094 : ("elif" `expression` ":" `suite`)*
Georg Brandl116aa622007-08-15 14:28:22 +000095 : ["else" ":" `suite`]
96
Georg Brandl116aa622007-08-15 14:28:22 +000097It selects exactly one of the suites by evaluating the expressions one by one
98until one is found to be true (see section :ref:`booleans` for the definition of
99true and false); then that suite is executed (and no other part of the
100:keyword:`if` statement is executed or evaluated). If all expressions are
101false, the suite of the :keyword:`else` clause, if present, is executed.
102
103
104.. _while:
105
106The :keyword:`while` statement
107==============================
108
109.. index::
110 statement: while
Georg Brandl02c30562007-09-07 17:52:53 +0000111 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000112 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000113 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000114
115The :keyword:`while` statement is used for repeated execution as long as an
116expression is true:
117
118.. productionlist::
119 while_stmt: "while" `expression` ":" `suite`
120 : ["else" ":" `suite`]
121
Georg Brandl116aa622007-08-15 14:28:22 +0000122This repeatedly tests the expression and, if it is true, executes the first
123suite; if the expression is false (which may be the first time it is tested) the
124suite of the :keyword:`else` clause, if present, is executed and the loop
125terminates.
126
127.. index::
128 statement: break
129 statement: continue
130
131A :keyword:`break` statement executed in the first suite terminates the loop
132without executing the :keyword:`else` clause's suite. A :keyword:`continue`
133statement executed in the first suite skips the rest of the suite and goes back
134to testing the expression.
135
136
137.. _for:
138
139The :keyword:`for` statement
140============================
141
142.. index::
143 statement: for
Georg Brandl02c30562007-09-07 17:52:53 +0000144 keyword: in
145 keyword: else
146 pair: target; list
Georg Brandl116aa622007-08-15 14:28:22 +0000147 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000148 keyword: in
149 keyword: else
150 pair: target; list
Georg Brandl02c30562007-09-07 17:52:53 +0000151 object: sequence
Georg Brandl116aa622007-08-15 14:28:22 +0000152
153The :keyword:`for` statement is used to iterate over the elements of a sequence
154(such as a string, tuple or list) or other iterable object:
155
156.. productionlist::
157 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
158 : ["else" ":" `suite`]
159
Georg Brandl116aa622007-08-15 14:28:22 +0000160The expression list is evaluated once; it should yield an iterable object. An
161iterator is created for the result of the ``expression_list``. The suite is
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700162then executed once for each item provided by the iterator, in the order returned
163by the iterator. Each item in turn is assigned to the target list using the
Georg Brandl02c30562007-09-07 17:52:53 +0000164standard rules for assignments (see :ref:`assignment`), and then the suite is
165executed. When the items are exhausted (which is immediately when the sequence
166is empty or an iterator raises a :exc:`StopIteration` exception), the suite in
Georg Brandl116aa622007-08-15 14:28:22 +0000167the :keyword:`else` clause, if present, is executed, and the loop terminates.
168
169.. index::
170 statement: break
171 statement: continue
172
173A :keyword:`break` statement executed in the first suite terminates the loop
174without executing the :keyword:`else` clause's suite. A :keyword:`continue`
175statement executed in the first suite skips the rest of the suite and continues
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700176with the next item, or with the :keyword:`else` clause if there is no next
Georg Brandl116aa622007-08-15 14:28:22 +0000177item.
178
Andrés Delfinoe42b7052018-07-26 12:35:23 -0300179The for-loop makes assignments to the variables in the target list.
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700180This overwrites all previous assignments to those variables including
181those made in the suite of the for-loop::
182
183 for i in range(10):
184 print(i)
185 i = 5 # this will not affect the for-loop
Zachary Ware2f78b842014-06-03 09:32:40 -0500186 # because i will be overwritten with the next
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700187 # index in the range
188
Georg Brandl116aa622007-08-15 14:28:22 +0000189
190.. index::
191 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000192
Georg Brandl02c30562007-09-07 17:52:53 +0000193Names in the target list are not deleted when the loop is finished, but if the
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700194sequence is empty, they will not have been assigned to at all by the loop. Hint:
Georg Brandl02c30562007-09-07 17:52:53 +0000195the built-in function :func:`range` returns an iterator of integers suitable to
Benjamin Peterson3db5e7b2009-06-03 03:13:30 +0000196emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))``
Georg Brandl02c30562007-09-07 17:52:53 +0000197returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000198
Georg Brandle720c0a2009-04-27 16:20:50 +0000199.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000200
201 .. index::
202 single: loop; over mutable sequence
203 single: mutable sequence; loop over
204
205 There is a subtlety when the sequence is being modified by the loop (this can
Andrés Delfino6921ef72018-07-30 15:44:35 -0300206 only occur for mutable sequences, e.g. lists). An internal counter is used
Georg Brandl02c30562007-09-07 17:52:53 +0000207 to keep track of which item is used next, and this is incremented on each
Georg Brandl116aa622007-08-15 14:28:22 +0000208 iteration. When this counter has reached the length of the sequence the loop
209 terminates. This means that if the suite deletes the current (or a previous)
Georg Brandl02c30562007-09-07 17:52:53 +0000210 item from the sequence, the next item will be skipped (since it gets the
211 index of the current item which has already been treated). Likewise, if the
212 suite inserts an item in the sequence before the current item, the current
213 item will be treated again the next time through the loop. This can lead to
214 nasty bugs that can be avoided by making a temporary copy using a slice of
215 the whole sequence, e.g., ::
Georg Brandl116aa622007-08-15 14:28:22 +0000216
Georg Brandl02c30562007-09-07 17:52:53 +0000217 for x in a[:]:
218 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000219
220
221.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000222.. _except:
223.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000224
225The :keyword:`try` statement
226============================
227
Christian Heimesfaf2f632008-01-06 16:59:19 +0000228.. index::
229 statement: try
230 keyword: except
231 keyword: finally
Georg Brandl16174572007-09-01 12:38:06 +0000232.. index:: keyword: except
Georg Brandl116aa622007-08-15 14:28:22 +0000233
234The :keyword:`try` statement specifies exception handlers and/or cleanup code
235for a group of statements:
236
237.. productionlist::
Andrés Delfinocaccca782018-07-07 17:24:46 -0300238 try_stmt: `try1_stmt` | `try2_stmt`
Georg Brandl116aa622007-08-15 14:28:22 +0000239 try1_stmt: "try" ":" `suite`
Terry Jan Reedy65e3ecb2014-08-23 19:29:47 -0400240 : ("except" [`expression` ["as" `identifier`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000241 : ["else" ":" `suite`]
242 : ["finally" ":" `suite`]
243 try2_stmt: "try" ":" `suite`
244 : "finally" ":" `suite`
245
Christian Heimesfaf2f632008-01-06 16:59:19 +0000246
247The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000248exception occurs in the :keyword:`try` clause, no exception handler is executed.
249When an exception occurs in the :keyword:`try` suite, a search for an exception
250handler is started. This search inspects the except clauses in turn until one
251is found that matches the exception. An expression-less except clause, if
252present, must be last; it matches any exception. For an except clause with an
253expression, that expression is evaluated, and the clause matches the exception
254if the resulting object is "compatible" with the exception. An object is
255compatible with an exception if it is the class or a base class of the exception
256object or a tuple containing an item compatible with the exception.
257
258If no except clause matches the exception, the search for an exception handler
259continues in the surrounding code and on the invocation stack. [#]_
260
261If the evaluation of an expression in the header of an except clause raises an
262exception, the original search for a handler is canceled and a search starts for
263the new exception in the surrounding code and on the call stack (it is treated
264as if the entire :keyword:`try` statement raised the exception).
265
266When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000267specified after the :keyword:`as` keyword in that except clause, if present, and
268the except clause's suite is executed. All except clauses must have an
269executable block. When the end of this block is reached, execution continues
270normally after the entire try statement. (This means that if two nested
271handlers exist for the same exception, and the exception occurs in the try
272clause of the inner handler, the outer handler will not handle the exception.)
273
274When an exception has been assigned using ``as target``, it is cleared at the
275end of the except clause. This is as if ::
276
277 except E as N:
278 foo
279
280was translated to ::
281
282 except E as N:
283 try:
284 foo
285 finally:
Georg Brandl02c30562007-09-07 17:52:53 +0000286 del N
287
Benjamin Petersonfb288da2010-06-29 01:27:35 +0000288This means the exception must be assigned to a different name to be able to
289refer to it after the except clause. Exceptions are cleared because with the
290traceback attached to them, they form a reference cycle with the stack frame,
291keeping all locals in that frame alive until the next garbage collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000292
293.. index::
294 module: sys
295 object: traceback
296
297Before an except clause's suite is executed, details about the exception are
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700298stored in the :mod:`sys` module and can be accessed via :func:`sys.exc_info`.
Georg Brandlb30f3302011-01-06 09:23:56 +0000299:func:`sys.exc_info` returns a 3-tuple consisting of the exception class, the
300exception instance and a traceback object (see section :ref:`types`) identifying
301the point in the program where the exception occurred. :func:`sys.exc_info`
302values are restored to their previous values (before the call) when returning
303from a function that handled an exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000304
305.. index::
306 keyword: else
307 statement: return
308 statement: break
309 statement: continue
310
311The optional :keyword:`else` clause is executed if and when control flows off
312the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
313clause are not handled by the preceding :keyword:`except` clauses.
314
315.. index:: keyword: finally
316
317If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
318:keyword:`try` clause is executed, including any :keyword:`except` and
319:keyword:`else` clauses. If an exception occurs in any of the clauses and is
320not handled, the exception is temporarily saved. The :keyword:`finally` clause
Mark Dickinson05ee5812012-09-24 20:16:38 +0100321is executed. If there is a saved exception it is re-raised at the end of the
322:keyword:`finally` clause. If the :keyword:`finally` clause raises another
323exception, the saved exception is set as the context of the new exception.
Serhiy Storchakafe2bbb12018-03-18 09:56:52 +0200324If the :keyword:`finally` clause executes a :keyword:`return`, :keyword:`break`
325or :keyword:`continue` statement, the saved exception is discarded::
Andrew Svetlovf158d862012-08-14 15:38:15 +0300326
Zachary Ware9fafc9f2014-05-06 09:18:17 -0500327 >>> def f():
328 ... try:
329 ... 1/0
330 ... finally:
331 ... return 42
332 ...
333 >>> f()
334 42
Andrew Svetlovf158d862012-08-14 15:38:15 +0300335
336The exception information is not available to the program during execution of
337the :keyword:`finally` clause.
Georg Brandl116aa622007-08-15 14:28:22 +0000338
339.. index::
340 statement: return
341 statement: break
342 statement: continue
343
344When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
345executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
Serhiy Storchakafe2bbb12018-03-18 09:56:52 +0200346statement, the :keyword:`finally` clause is also executed 'on the way out.'
Georg Brandl116aa622007-08-15 14:28:22 +0000347
Zachary Ware8edd5322014-05-06 09:07:13 -0500348The return value of a function is determined by the last :keyword:`return`
349statement executed. Since the :keyword:`finally` clause always executes, a
350:keyword:`return` statement executed in the :keyword:`finally` clause will
351always be the last one executed::
352
353 >>> def foo():
354 ... try:
355 ... return 'try'
356 ... finally:
357 ... return 'finally'
358 ...
359 >>> foo()
360 'finally'
361
Georg Brandl116aa622007-08-15 14:28:22 +0000362Additional information on exceptions can be found in section :ref:`exceptions`,
363and information on using the :keyword:`raise` statement to generate exceptions
364may be found in section :ref:`raise`.
365
Serhiy Storchakafe2bbb12018-03-18 09:56:52 +0200366.. versionchanged:: 3.8
367 Prior to Python 3.8, a :keyword:`continue` statement was illegal in the
368 :keyword:`finally` clause due to a problem with the implementation.
369
Georg Brandl116aa622007-08-15 14:28:22 +0000370
371.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000372.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000373
374The :keyword:`with` statement
375=============================
376
Terry Jan Reedy7c895ed2014-04-29 00:58:56 -0400377.. index::
378 statement: with
379 single: as; with statement
Georg Brandl116aa622007-08-15 14:28:22 +0000380
Georg Brandl116aa622007-08-15 14:28:22 +0000381The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000382methods defined by a context manager (see section :ref:`context-managers`).
383This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
384usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000385
386.. productionlist::
Andrés Delfinocaccca782018-07-07 17:24:46 -0300387 with_stmt: "with" `with_item` ("," `with_item`)* ":" `suite`
Georg Brandl0c315622009-05-25 21:10:36 +0000388 with_item: `expression` ["as" `target`]
Georg Brandl116aa622007-08-15 14:28:22 +0000389
Georg Brandl0c315622009-05-25 21:10:36 +0000390The execution of the :keyword:`with` statement with one "item" proceeds as follows:
Georg Brandl116aa622007-08-15 14:28:22 +0000391
Georg Brandl3387f482010-09-03 22:40:02 +0000392#. The context expression (the expression given in the :token:`with_item`) is
393 evaluated to obtain a context manager.
Georg Brandl116aa622007-08-15 14:28:22 +0000394
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000395#. The context manager's :meth:`__exit__` is loaded for later use.
396
Georg Brandl116aa622007-08-15 14:28:22 +0000397#. The context manager's :meth:`__enter__` method is invoked.
398
399#. If a target was included in the :keyword:`with` statement, the return value
400 from :meth:`__enter__` is assigned to it.
401
402 .. note::
403
Georg Brandl02c30562007-09-07 17:52:53 +0000404 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
405 method returns without an error, then :meth:`__exit__` will always be
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000406 called. Thus, if an error occurs during the assignment to the target list,
407 it will be treated the same as an error occurring within the suite would
408 be. See step 6 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000409
410#. The suite is executed.
411
Georg Brandl02c30562007-09-07 17:52:53 +0000412#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000413 caused the suite to be exited, its type, value, and traceback are passed as
414 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
415 supplied.
416
417 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000418 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000419 value was true, the exception is suppressed, and execution continues with the
420 statement following the :keyword:`with` statement.
421
Georg Brandl02c30562007-09-07 17:52:53 +0000422 If the suite was exited for any reason other than an exception, the return
423 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
424 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000425
Georg Brandl0c315622009-05-25 21:10:36 +0000426With more than one item, the context managers are processed as if multiple
427:keyword:`with` statements were nested::
428
429 with A() as a, B() as b:
430 suite
431
432is equivalent to ::
433
434 with A() as a:
435 with B() as b:
436 suite
437
438.. versionchanged:: 3.1
439 Support for multiple context expressions.
440
Georg Brandl116aa622007-08-15 14:28:22 +0000441.. seealso::
442
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300443 :pep:`343` - The "with" statement
Georg Brandl116aa622007-08-15 14:28:22 +0000444 The specification, background, and examples for the Python :keyword:`with`
445 statement.
446
447
Chris Jerdonekb4309942012-12-25 14:54:44 -0800448.. index::
449 single: parameter; function definition
450
Georg Brandl116aa622007-08-15 14:28:22 +0000451.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000452.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000453
454Function definitions
455====================
456
457.. index::
Georg Brandl116aa622007-08-15 14:28:22 +0000458 statement: def
Christian Heimesfaf2f632008-01-06 16:59:19 +0000459 pair: function; definition
460 pair: function; name
461 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000462 object: user-defined function
463 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000464 pair: function; name
465 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000466
467A function definition defines a user-defined function object (see section
468:ref:`types`):
469
470.. productionlist::
Andrés Delfinocaccca782018-07-07 17:24:46 -0300471 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")"
472 : ["->" `expression`] ":" `suite`
Georg Brandl116aa622007-08-15 14:28:22 +0000473 decorators: `decorator`+
Benjamin Petersonbc7ee432016-05-16 23:18:33 -0700474 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
Georg Brandl116aa622007-08-15 14:28:22 +0000475 dotted_name: `identifier` ("." `identifier`)*
Robert Collinsdf395992015-08-12 08:00:06 +1200476 parameter_list: `defparameter` ("," `defparameter`)* ["," [`parameter_list_starargs`]]
477 : | `parameter_list_starargs`
478 parameter_list_starargs: "*" [`parameter`] ("," `defparameter`)* ["," ["**" `parameter` [","]]]
Andrés Delfinocaccca782018-07-07 17:24:46 -0300479 : | "**" `parameter` [","]
Georg Brandl116aa622007-08-15 14:28:22 +0000480 parameter: `identifier` [":" `expression`]
481 defparameter: `parameter` ["=" `expression`]
482 funcname: `identifier`
483
Georg Brandl116aa622007-08-15 14:28:22 +0000484
485A function definition is an executable statement. Its execution binds the
486function name in the current local namespace to a function object (a wrapper
487around the executable code for the function). This function object contains a
488reference to the current global namespace as the global namespace to be used
489when the function is called.
490
491The function definition does not execute the function body; this gets executed
Georg Brandl3dbca812008-07-23 16:10:53 +0000492only when the function is called. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +0000493
Christian Heimesdae2a892008-04-19 00:55:37 +0000494.. index::
495 statement: @
496
Christian Heimesd8654cf2007-12-02 15:22:16 +0000497A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000498Decorator expressions are evaluated when the function is defined, in the scope
499that contains the function definition. The result must be a callable, which is
500invoked with the function object as the only argument. The returned value is
501bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000502are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000503
504 @f1(arg)
505 @f2
506 def func(): pass
507
Berker Peksag6cafece2016-08-03 10:17:21 +0300508is roughly equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000509
510 def func(): pass
511 func = f1(arg)(f2(func))
512
Berker Peksag6cafece2016-08-03 10:17:21 +0300513except that the original function is not temporarily bound to the name ``func``.
514
Chris Jerdonekb4309942012-12-25 14:54:44 -0800515.. index::
516 triple: default; parameter; value
517 single: argument; function definition
Georg Brandl116aa622007-08-15 14:28:22 +0000518
Chris Jerdonekb4309942012-12-25 14:54:44 -0800519When one or more :term:`parameters <parameter>` have the form *parameter* ``=``
520*expression*, the function is said to have "default parameter values." For a
521parameter with a default value, the corresponding :term:`argument` may be
522omitted from a call, in which
Georg Brandl116aa622007-08-15 14:28:22 +0000523case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000524value, all following parameters up until the "``*``" must also have a default
525value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000526
Benjamin Peterson1ef876c2013-02-10 09:29:59 -0500527**Default parameter values are evaluated from left to right when the function
528definition is executed.** This means that the expression is evaluated once, when
529the function is defined, and that the same "pre-computed" value is used for each
530call. This is especially important to understand when a default parameter is a
531mutable object, such as a list or a dictionary: if the function modifies the
532object (e.g. by appending an item to a list), the default value is in effect
533modified. This is generally not what was intended. A way around this is to use
534``None`` as the default, and explicitly test for it in the body of the function,
535e.g.::
Georg Brandl116aa622007-08-15 14:28:22 +0000536
537 def whats_on_the_telly(penguin=None):
538 if penguin is None:
539 penguin = []
540 penguin.append("property of the zoo")
541 return penguin
542
Christian Heimesdae2a892008-04-19 00:55:37 +0000543.. index::
544 statement: *
545 statement: **
546
547Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000548function call always assigns values to all parameters mentioned in the parameter
549list, either from position arguments, from keyword arguments, or from default
550values. If the form "``*identifier``" is present, it is initialized to a tuple
Eric Snowb957b0c2016-09-08 13:59:58 -0700551receiving any excess positional parameters, defaulting to the empty tuple.
552If the form "``**identifier``" is present, it is initialized to a new
553ordered mapping receiving any excess keyword arguments, defaulting to a
554new empty mapping of the same type. Parameters after "``*``" or
555"``*identifier``" are keyword-only parameters and may only be passed
556used keyword arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000557
558.. index:: pair: function; annotations
559
560Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000561parameter name. Any parameter may have an annotation even those of the form
562``*identifier`` or ``**identifier``. Functions may have "return" annotation of
563the form "``-> expression``" after the parameter list. These annotations can be
Guido van Rossum95e4d582018-01-26 08:20:18 -0800564any valid Python expression. The presence of annotations does not change the
565semantics of a function. The annotation values are available as values of
566a dictionary keyed by the parameters' names in the :attr:`__annotations__`
567attribute of the function object. If the ``annotations`` import from
568:mod:`__future__` is used, annotations are preserved as strings at runtime which
569enables postponed evaluation. Otherwise, they are evaluated when the function
570definition is executed. In this case annotations may be evaluated in
571a different order than they appear in the source code.
Georg Brandl116aa622007-08-15 14:28:22 +0000572
Georg Brandl242e6a02013-10-06 10:28:39 +0200573.. index:: pair: lambda; expression
Georg Brandl116aa622007-08-15 14:28:22 +0000574
575It is also possible to create anonymous functions (functions not bound to a
Georg Brandl242e6a02013-10-06 10:28:39 +0200576name), for immediate use in expressions. This uses lambda expressions, described in
577section :ref:`lambda`. Note that the lambda expression is merely a shorthand for a
Georg Brandl116aa622007-08-15 14:28:22 +0000578simplified function definition; a function defined in a ":keyword:`def`"
579statement can be passed around or assigned to another name just like a function
Georg Brandl242e6a02013-10-06 10:28:39 +0200580defined by a lambda expression. The ":keyword:`def`" form is actually more powerful
Georg Brandl116aa622007-08-15 14:28:22 +0000581since it allows the execution of multiple statements and annotations.
582
Georg Brandl242e6a02013-10-06 10:28:39 +0200583**Programmer's note:** Functions are first-class objects. A "``def``" statement
Georg Brandl116aa622007-08-15 14:28:22 +0000584executed inside a function definition defines a local function that can be
585returned or passed around. Free variables used in the nested function can
586access the local variables of the function containing the def. See section
587:ref:`naming` for details.
588
Georg Brandl64a40942012-03-10 09:22:47 +0100589.. seealso::
590
591 :pep:`3107` - Function Annotations
592 The original specification for function annotations.
593
Guido van Rossum95e4d582018-01-26 08:20:18 -0800594 :pep:`484` - Type Hints
595 Definition of a standard meaning for annotations: type hints.
596
597 :pep:`526` - Syntax for Variable Annotations
598 Ability to type hint variable declarations, including class
599 variables and instance variables
600
601 :pep:`563` - Postponed Evaluation of Annotations
602 Support for forward references within annotations by preserving
603 annotations in a string form at runtime instead of eager evaluation.
604
Georg Brandl116aa622007-08-15 14:28:22 +0000605
606.. _class:
607
608Class definitions
609=================
610
611.. index::
Georg Brandl02c30562007-09-07 17:52:53 +0000612 object: class
Christian Heimesfaf2f632008-01-06 16:59:19 +0000613 statement: class
614 pair: class; definition
Georg Brandl116aa622007-08-15 14:28:22 +0000615 pair: class; name
616 pair: name; binding
617 pair: execution; frame
Christian Heimesfaf2f632008-01-06 16:59:19 +0000618 single: inheritance
Georg Brandl3dbca812008-07-23 16:10:53 +0000619 single: docstring
Georg Brandl116aa622007-08-15 14:28:22 +0000620
Georg Brandl02c30562007-09-07 17:52:53 +0000621A class definition defines a class object (see section :ref:`types`):
622
Georg Brandl02c30562007-09-07 17:52:53 +0000623.. productionlist::
624 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
Benjamin Peterson54044d62016-05-16 23:20:22 -0700625 inheritance: "(" [`argument_list`] ")"
Georg Brandl02c30562007-09-07 17:52:53 +0000626 classname: `identifier`
627
Georg Brandl65e5f802010-08-02 18:10:13 +0000628A class definition is an executable statement. The inheritance list usually
629gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so
630each item in the list should evaluate to a class object which allows
Éric Araujo28053fb2010-11-22 03:09:19 +0000631subclassing. Classes without an inheritance list inherit, by default, from the
632base class :class:`object`; hence, ::
633
634 class Foo:
635 pass
636
637is equivalent to ::
638
639 class Foo(object):
640 pass
Georg Brandl65e5f802010-08-02 18:10:13 +0000641
642The class's suite is then executed in a new execution frame (see :ref:`naming`),
643using a newly created local namespace and the original global namespace.
644(Usually, the suite contains mostly function definitions.) When the class's
645suite finishes execution, its execution frame is discarded but its local
646namespace is saved. [#]_ A class object is then created using the inheritance
647list for the base classes and the saved local namespace for the attribute
648dictionary. The class name is bound to this class object in the original local
649namespace.
650
Eric Snow92a6c172016-09-05 14:50:11 -0700651The order in which attributes are defined in the class body is preserved
Eric Snow4f29e752016-09-08 15:11:11 -0700652in the new class's ``__dict__``. Note that this is reliable only right
653after the class is created and only for classes that were defined using
654the definition syntax.
Eric Snow92a6c172016-09-05 14:50:11 -0700655
Georg Brandl65e5f802010-08-02 18:10:13 +0000656Class creation can be customized heavily using :ref:`metaclasses <metaclasses>`.
Georg Brandl116aa622007-08-15 14:28:22 +0000657
Georg Brandlf4142722010-10-17 10:38:20 +0000658Classes can also be decorated: just like when decorating functions, ::
Georg Brandl02c30562007-09-07 17:52:53 +0000659
660 @f1(arg)
661 @f2
662 class Foo: pass
663
Berker Peksag6cafece2016-08-03 10:17:21 +0300664is roughly equivalent to ::
Georg Brandl02c30562007-09-07 17:52:53 +0000665
666 class Foo: pass
667 Foo = f1(arg)(f2(Foo))
668
Georg Brandlf4142722010-10-17 10:38:20 +0000669The evaluation rules for the decorator expressions are the same as for function
Berker Peksag6cafece2016-08-03 10:17:21 +0300670decorators. The result is then bound to the class name.
Georg Brandlf4142722010-10-17 10:38:20 +0000671
Georg Brandl116aa622007-08-15 14:28:22 +0000672**Programmer's note:** Variables defined in the class definition are class
Georg Brandl65e5f802010-08-02 18:10:13 +0000673attributes; they are shared by instances. Instance attributes can be set in a
674method with ``self.name = value``. Both class and instance attributes are
675accessible through the notation "``self.name``", and an instance attribute hides
676a class attribute with the same name when accessed in this way. Class
677attributes can be used as defaults for instance attributes, but using mutable
678values there can lead to unexpected results. :ref:`Descriptors <descriptors>`
679can be used to create instance variables with different implementation details.
Georg Brandl85eb8c12007-08-31 16:33:38 +0000680
Georg Brandl116aa622007-08-15 14:28:22 +0000681
Georg Brandl02c30562007-09-07 17:52:53 +0000682.. seealso::
683
Ezio Melotti78858332011-03-11 20:50:42 +0200684 :pep:`3115` - Metaclasses in Python 3
Georg Brandl02c30562007-09-07 17:52:53 +0000685 :pep:`3129` - Class Decorators
686
Georg Brandl02c30562007-09-07 17:52:53 +0000687
Elvis Pranskevichus63536bd2018-05-19 23:15:06 -0400688.. _async:
689
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400690Coroutines
691==========
692
Yury Selivanov5376ba92015-06-22 12:19:30 -0400693.. versionadded:: 3.5
694
Yury Selivanov66f88282015-06-24 11:04:15 -0400695.. index:: statement: async def
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400696.. _`async def`:
697
698Coroutine function definition
699-----------------------------
700
701.. productionlist::
Andrés Delfinocaccca782018-07-07 17:24:46 -0300702 async_funcdef: [`decorators`] "async" "def" `funcname` "(" [`parameter_list`] ")"
703 : ["->" `expression`] ":" `suite`
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400704
Yury Selivanov66f88282015-06-24 11:04:15 -0400705.. index::
706 keyword: async
707 keyword: await
708
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400709Execution of Python coroutines can be suspended and resumed at many points
Yury Selivanov66f88282015-06-24 11:04:15 -0400710(see :term:`coroutine`). In the body of a coroutine, any ``await`` and
711``async`` identifiers become reserved keywords; :keyword:`await` expressions,
712:keyword:`async for` and :keyword:`async with` can only be used in
Yury Selivanov8fb307c2015-07-22 13:33:45 +0300713coroutine bodies.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400714
715Functions defined with ``async def`` syntax are always coroutine functions,
716even if they do not contain ``await`` or ``async`` keywords.
717
Yury Selivanov03660042016-12-15 17:36:05 -0500718It is a :exc:`SyntaxError` to use ``yield from`` expressions in
Yury Selivanov66f88282015-06-24 11:04:15 -0400719``async def`` coroutines.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400720
Yury Selivanov5376ba92015-06-22 12:19:30 -0400721An example of a coroutine function::
722
723 async def func(param1, param2):
724 do_stuff()
725 await some_coroutine()
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400726
727
Yury Selivanov66f88282015-06-24 11:04:15 -0400728.. index:: statement: async for
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400729.. _`async for`:
730
731The :keyword:`async for` statement
732----------------------------------
733
734.. productionlist::
735 async_for_stmt: "async" `for_stmt`
736
737An :term:`asynchronous iterable` is able to call asynchronous code in its
738*iter* implementation, and :term:`asynchronous iterator` can call asynchronous
739code in its *next* method.
740
741The ``async for`` statement allows convenient iteration over asynchronous
742iterators.
743
744The following code::
745
746 async for TARGET in ITER:
747 BLOCK
748 else:
749 BLOCK2
750
751Is semantically equivalent to::
752
753 iter = (ITER)
Yury Selivanova6f6edb2016-06-09 15:08:31 -0400754 iter = type(iter).__aiter__(iter)
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400755 running = True
756 while running:
757 try:
758 TARGET = await type(iter).__anext__(iter)
759 except StopAsyncIteration:
760 running = False
761 else:
762 BLOCK
763 else:
764 BLOCK2
765
766See also :meth:`__aiter__` and :meth:`__anext__` for details.
767
Yury Selivanov5376ba92015-06-22 12:19:30 -0400768It is a :exc:`SyntaxError` to use ``async for`` statement outside of an
769:keyword:`async def` function.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400770
771
Yury Selivanov66f88282015-06-24 11:04:15 -0400772.. index:: statement: async with
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400773.. _`async with`:
774
775The :keyword:`async with` statement
776-----------------------------------
777
778.. productionlist::
779 async_with_stmt: "async" `with_stmt`
780
781An :term:`asynchronous context manager` is a :term:`context manager` that is
782able to suspend execution in its *enter* and *exit* methods.
783
784The following code::
785
786 async with EXPR as VAR:
787 BLOCK
788
789Is semantically equivalent to::
790
791 mgr = (EXPR)
792 aexit = type(mgr).__aexit__
793 aenter = type(mgr).__aenter__(mgr)
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400794
795 VAR = await aenter
796 try:
797 BLOCK
798 except:
799 if not await aexit(mgr, *sys.exc_info()):
800 raise
801 else:
802 await aexit(mgr, None, None, None)
803
804See also :meth:`__aenter__` and :meth:`__aexit__` for details.
805
Yury Selivanov5376ba92015-06-22 12:19:30 -0400806It is a :exc:`SyntaxError` to use ``async with`` statement outside of an
807:keyword:`async def` function.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400808
809.. seealso::
810
811 :pep:`492` - Coroutines with async and await syntax
812
813
Georg Brandl116aa622007-08-15 14:28:22 +0000814.. rubric:: Footnotes
815
Ezio Melottifc3db8a2011-06-26 11:25:28 +0300816.. [#] The exception is propagated to the invocation stack unless
817 there is a :keyword:`finally` clause which happens to raise another
818 exception. That new exception causes the old one to be lost.
Georg Brandl116aa622007-08-15 14:28:22 +0000819
Georg Brandlf43713f2009-10-22 16:08:10 +0000820.. [#] Currently, control "flows off the end" except in the case of an exception
821 or the execution of a :keyword:`return`, :keyword:`continue`, or
822 :keyword:`break` statement.
Georg Brandl3dbca812008-07-23 16:10:53 +0000823
824.. [#] A string literal appearing as the first statement in the function body is
825 transformed into the function's ``__doc__`` attribute and therefore the
826 function's :term:`docstring`.
827
828.. [#] A string literal appearing as the first statement in the class body is
829 transformed into the namespace's ``__doc__`` item and therefore the class's
830 :term:`docstring`.