A simple statement is comprised within a single logical line. Several simple statements may occur on a single line separated by semicolons. The syntax for simple statements is:
simple_stmt:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7.1. Expression statements
Expression statements are used (mostly interactively) to compute and write a value, or (usually) to call a procedure (a function that returns no meaningful result; in Python, procedures return the value None). Other uses of expression statements are allowed and occasionally useful. The syntax for an expression statement is:
expression_stmt:
An expression statement evaluates the expression list (which may be a single expression).
In interactive mode, if the value is not None, it is converted to a string using the built-in
function and the resulting string is written to standard output on a line by itself (except if the result is None, so that procedure calls do not cause any output.)
7.2. Assignment statements
Assignment statements are used to (re)bind names to values and to modify attributes or items of mutable objects:
assignment_stmt: (
"=")+ (
|
) target_list:
(","
)* [","] target:
| "(" [
] ")" | "[" [
] "]" |
|
| "*"
(See section
for the syntax definitions for attributeref and subscription.)
An assignment statement evaluates the expression list (remember that this can be a single expression or a comma-separated list, the latter yielding a tuple) and assigns the single resulting object to each of the target lists, from left to right.
Assignment is defined recursively depending on the form of the target (list). When a target is part of a mutable object (an attribute reference or subscription), the mutable object must ultimately perform the assignment and decide about its validity, and may raise an exception if the assignment is unacceptable. The rules observed by various types and the exceptions raised are given with the definition of the object types (see section
).
Assignment of an object to a target list, optionally enclosed in parentheses or square brackets, is recursively defined as follows.
If the target list is a single target with no trailing comma, optionally in parentheses, the object is assigned to that target.
Else:
If the target list contains one target prefixed with an asterisk, called a “starred” target: The object must be an iterable with at least as many items as there are targets in the target list, minus one. The first items of the iterable are assigned, from left to right, to the targets before the starred target. The final items of the iterable are assigned to the targets after the starred target. A list of the remaining items in the iterable is then assigned to the starred target (the list can be empty).
Else: The object must be an iterable with the same number of items as there are targets in the target list, and the items are assigned, from left to right, to the corresponding targets.
Assignment of an object to a single target is recursively defined as follows.
If the target is an identifier (name):
If the name does not occur in a
or
statement in the current code block: the name is bound to the object in the current local namespace.
Otherwise: the name is bound to the object in the global namespace or the outer namespace determined by
, respectively.
The name is rebound if it was already bound. This may cause the reference count for the object previously bound to the name to reach zero, causing the object to be deallocated and its destructor (if it has one) to be called.
If the target is an attribute reference: The primary expression in the reference is evaluated. It should yield an object with assignable attributes; if this is not the case,
is raised. That object is then asked to assign the assigned object to the given attribute; if it cannot perform the assignment, it raises an exception (usually but not necessarily
).
Note: If the object is a class instance and the attribute reference occurs on both sides of the assignment operator, the right-hand side expression, a.x can access either an instance attribute or (if no instance attribute exists) a class attribute. The left-hand side target a.x is always set as an instance attribute, creating it if necessary. Thus, the two occurrences of a.x do not necessarily refer to the same attribute: if the right-hand side expression refers to a class attribute, the left-hand side creates a new instance attribute as the target of the assignment:
classCls:x=3# class variableinst=Cls()inst.x=inst.x+1# writes inst.x as 4 leaving Cls.x as 3This description does not necessarily apply to descriptor attributes, such as properties created with
.
If the target is a subscription: The primary expression in the reference is evaluated. Next, the subscript expression is evaluated. Then, the primary’s
method is called with two arguments: the subscript and the assigned object.
Typically,
is defined on mutable sequence objects (such as lists) and mapping objects (such as dictionaries), and behaves as follows.
If the primary is a mutable sequence object (such as a list), the subscript must yield an integer. If it is negative, the sequence’s length is added to it. The resulting value must be a nonnegative integer less than the sequence’s length, and the sequence is asked to assign the assigned object to its item with that index. If the index is out of range,
is raised (assignment to a subscripted sequence cannot add new items to a list).
If the primary is a mapping object (such as a dictionary), the subscript must have a type compatible with the mapping’s key type, and the mapping is then asked to create a key/value pair which maps the subscript to the assigned object. This can either replace an existing key/value pair with the same key value, or insert a new key/value pair (if no key with the same value existed).
If the target is a slicing: The primary expression should evaluate to a mutable sequence object (such as a list). The assigned object should be
. The slicing’s lower and upper bounds should be integers; if they are None (or not present), the defaults are zero and the sequence’s length. If either bound is negative, the sequence’s length is added to it. The resulting bounds are clipped to lie between zero and the sequence’s length, inclusive. Finally, the sequence object is asked to replace the slice with the items of the assigned sequence. The length of the slice may be different from the length of the assigned sequence, thus changing the length of the target sequence, if the target sequence allows it.
Although the definition of assignment implies that overlaps between the left-hand side and the right-hand side are ‘simultaneous’ (for example a,b=b,a swaps two variables), overlaps within the collection of assigned-to variables occur left-to-right, sometimes resulting in confusion. For instance, the following program prints [0,2]:
x=[0,1]i=0i,x[i]=1,2# i is updated, then x[i] is updatedprint(x)See also
- Extended Iterable UnpackingThe specification for the *target feature.
7.2.1. Augmented assignment statements
Augmented assignment is the combination, in a single statement, of a binary operation and an assignment statement:
augmented_assignment_stmt:
(
|
) augtarget:
|
|
augop: "+=" | "-=" | "*=" | "@=" | "/=" | "//=" | "%=" | "**=" | ">>=" | "<<=" | "&=" | "^=" | "|="(See section
for the syntax definitions of the last three symbols.)
An augmented assignment evaluates the target (which, unlike normal assignment statements, cannot be an unpacking) and the expression list, performs the binary operation specific to the type of assignment on the two operands, and assigns the result to the original target. The target is only evaluated once.
An augmented assignment statement like x+=1 can be rewritten as x=x+1 to achieve a similar, but not exactly equal effect. In the augmented version, x is only evaluated once. Also, when possible, the actual operation is performed in-place, meaning that rather than creating a new object and assigning that to the target, the old object is modified instead.
Unlike normal assignments, augmented assignments evaluate the left-hand side before evaluating the right-hand side. For example, a[i]+=f(x) first looks-up a[i], then it evaluates f(x) and performs the addition, and lastly, it writes the result back to a[i].
With the exception of assigning to tuples and multiple targets in a single statement, the assignment done by augmented assignment statements is handled the same way as normal assignments. Similarly, with the exception of the possible in-place behavior, the binary operation performed by augmented assignment is the same as the normal binary operations.
For targets which are attribute references, the same
caveat about class and instance attributes
applies as for regular assignments.
7.2.2. Annotated assignment statements
assignment is the combination, in a single statement, of a variable or attribute annotation and an optional assignment statement:
annotated_assignment_stmt:
":"
["=" (
|
)] The difference from normal
is that only a single target is allowed.
The assignment target is considered “simple” if it consists of a single name that is not enclosed in parentheses. For simple assignment targets, if in class or module scope, the annotations are gathered in a lazily evaluated
. The annotations can be evaluated using the
attribute of a class or module, or using the facilities in the
module.
If the assignment target is not simple (an attribute, subscript node, or parenthesized name), the annotation is never evaluated.
If a name is annotated in a function scope, then this name is local for that scope. Annotations are never evaluated and stored in function scopes.
If the right hand side is present, an annotated assignment performs the actual assignment as if there was no annotation present. If the right hand side is not present for an expression target, then the interpreter evaluates the target except for the last
or
call.
See also
- Syntax for Variable AnnotationsThe proposal that added syntax for annotating the types of variables (including class variables and instance variables), instead of expressing them through comments.
- Type hintsThe proposal that added the
module to provide a standard syntax for type annotations that can be used in static analysis tools and IDEs.
Changed in version 3.8: Now annotated assignments allow the same expressions in the right hand side as regular assignments. Previously, some expressions (like un-parenthesized tuple expressions) caused a syntax error.
Changed in version 3.14: Annotations are now lazily evaluated in a separate
. If the assignment target is not simple, annotations are never evaluated.
7.3. The assert statement
Assert statements are a convenient way to insert debugging assertions into a program:
assert_stmt: "assert"
[","
] The simple form, assertexpression, is equivalent to
if__debug__:ifnotexpression:raiseAssertionErrorThe extended form, assertexpression1,expression2, is equivalent to
if__debug__:ifnotexpression1:raiseAssertionError(expression2)These equivalences assume that
and
refer to the built-in variables with those names. In the current implementation, the built-in variable __debug__ is True under normal circumstances, False when optimization is requested (command line option
). The current code generator emits no code for an
statement when optimization is requested at compile time. Note that it is unnecessary to include the source code for the expression that failed in the error message; it will be displayed as part of the stack trace.
Assignments to
are illegal. The value for the built-in variable is determined when the interpreter starts.
7.4. The pass statement
pass_stmt: "pass"
is a null operation — when it is executed, nothing happens. It is useful as a placeholder when a statement is required syntactically, but no code needs to be executed, for example:
deff(arg):pass# a function that does nothing (yet)classC:pass# a class with no methods (yet)7.5. The del statement
del_stmt: "del"
Deletion is recursively defined very similar to the way assignment is defined. Rather than spelling it out in full details, here are some hints.
Deletion of a target list recursively deletes each target, from left to right.
Deletion of a name removes the binding of that name from the local or global namespace, depending on whether the name occurs in a
statement in the same code block. Trying to delete an unbound name raises a
exception.
Deletion of attribute references and subscriptions is passed to the primary object involved; deletion of a slicing is in general equivalent to assignment of an empty slice of the right type (but even this is determined by the sliced object).
Changed in version 3.2: Previously it was illegal to delete a name from the local namespace if it occurs as a free variable in a nested block.
7.6. The return statement
return_stmt: "return" [
]
may only occur syntactically nested in a function definition, not within a nested class definition.
If an expression list is present, it is evaluated, else None is substituted.
leaves the current function call with the expression list (or None) as return value.
When
passes control out of a
statement with a
clause, that finally clause is executed before really leaving the function.
In a generator function, the
statement indicates that the generator is done and will cause
to be raised. The returned value (if any) is used as an argument to construct StopIteration and becomes the
attribute.
In an asynchronous generator function, an empty
statement indicates that the asynchronous generator is done and will cause
to be raised. A non-empty return statement is a syntax error in an asynchronous generator function.
7.7. The yield statement
yield_stmt:
A
statement is semantically equivalent to a
. The yield statement can be used to omit the parentheses that would otherwise be required in the equivalent yield expression statement. For example, the yield statements
yield<expr>yield from<expr>are equivalent to the yield expression statements
(yield<expr>)(yield from<expr>)Yield expressions and statements are only used when defining a
function, and are only used in the body of the generator function. Using
in a function definition is sufficient to cause that definition to create a generator function instead of a normal function.
For full details of
semantics, refer to the
section.
7.8. The raise statement
raise_stmt: "raise" [
["from"
]] If no expressions are present,
re-raises the exception that is currently being handled, which is also known as the active exception. If there isn’t currently an active exception, a
exception is raised indicating that this is an error.
Otherwise,
evaluates the first expression as the exception object. It must be either a subclass or an instance of
. If it is a class, the exception instance will be obtained when needed by instantiating the class with no arguments.
The type of the exception is the exception instance’s class, the value is the instance itself.
A traceback object is normally created automatically when an exception is raised and attached to it as the
attribute. You can create an exception and set your own traceback in one step using the
exception method (which returns the same exception instance, with its traceback set to its argument), like so:
raiseException("foo occurred").with_traceback(tracebackobj)The from clause is used for exception chaining: if given, the second expression must be another exception class or instance. If the second expression is an exception instance, it will be attached to the raised exception as the
attribute (which is writable). If the expression is an exception class, the class will be instantiated and the resulting exception instance will be attached to the raised exception as the __cause__ attribute. If the raised exception is not handled, both exceptions will be printed:
>>> try:... print(1/0)... exceptExceptionasexc:... raiseRuntimeError("Something bad happened")fromexc...Traceback (most recent call last): File "<stdin>", line 2, in <module>print(1/0)~~^~~ZeroDivisionError: division by zeroThe above exception was the direct cause of the following exception:Traceback (most recent call last): File "<stdin>", line 4, in <module>raiseRuntimeError("Something bad happened")fromexcRuntimeError: Something bad happenedA similar mechanism works implicitly if a new exception is raised when an exception is already being handled. An exception may be handled when an
or
clause, or a
statement, is used. The previous exception is then attached as the new exception’s
attribute:
>>> try:... print(1/0)... except:... raiseRuntimeError("Something bad happened")...Traceback (most recent call last): File "<stdin>", line 2, in <module>print(1/0)~~^~~ZeroDivisionError: division by zeroDuring handling of the above exception, another exception occurred:Traceback (most recent call last): File "<stdin>", line 4, in <module>raiseRuntimeError("Something bad happened")RuntimeError: Something bad happenedException chaining can be explicitly suppressed by specifying
in the from clause:
>>> try:... print(1/0)... except:... raiseRuntimeError("Something bad happened")fromNone...Traceback (most recent call last): File "<stdin>", line 4, in <module>RuntimeError: Something bad happenedAdditional information on exceptions can be found in section
, and information about handling exceptions is in section
.
Changed in version 3.3:
is now permitted as Y in raiseXfromY.
Added the
attribute to suppress automatic display of the exception context.
Changed in version 3.11: If the traceback of the active exception is modified in an
clause, a subsequent raise statement re-raises the exception with the modified traceback. Previously, the exception was re-raised with the traceback it had when it was caught.
7.9. The break statement
break_stmt: "break"
may only occur syntactically nested in a
or
loop, but not nested in a function or class definition within that loop.
It terminates the nearest enclosing loop, skipping the optional else clause if the loop has one.
If a
loop is terminated by
, the loop control target keeps its current value.
When
passes control out of a
statement with a
clause, that finally clause is executed before really leaving the loop.
7.10. The continue statement
continue_stmt: "continue"
may only occur syntactically nested in a
or
loop, but not nested in a function or class definition within that loop. It continues with the next cycle of the nearest enclosing loop.
When
passes control out of a
statement with a
clause, that finally clause is executed before really starting the next loop cycle.
7.11. The import statement
import_stmt: "import"
["as"
] (","
["as"
])* | "from"
"import"
["as"
] (","
["as"
])* | "from"
"import""("
["as"
] (","
["as"
])* [","] ")" | "from"
"import""*"module: (
".")*
relative_module: "."*
| "."+ The basic import statement (no
clause) is executed in two steps:
find a module, loading and initializing it if necessary
define a name or names in the current namespace for the scope where the
statement occurs, just as an assignment statement would (including
and
semantics).
When the statement contains multiple clauses (separated by commas) the two steps are carried out separately for each clause, just as though the clauses had been separated out into individual import statements.
The details of the first step, finding and loading modules, are described in greater detail in the section on the
, which also describes the various types of packages and modules that can be imported, as well as all the hooks that can be used to customize the import system. Note that failures in this step may indicate either that the module could not be located, or that an error occurred while initializing the module, which includes execution of the module’s code.
If the requested module is retrieved successfully, it will be made available in the local namespace in one of three ways:
If the module name is followed by as, then the name following as is bound directly to the imported module.
If no other name is specified, and the module being imported is a top level module, the module’s name is bound in the local namespace as a reference to the imported module
If the module being imported is not a top level module, then the name of the top level package that contains the module is bound in the local namespace as a reference to the top level package. The imported module must be accessed using its full qualified name rather than directly
The
form uses a slightly more complex process:
find the module specified in the
clause, loading and initializing it if necessary;
for each of the identifiers specified in the
clauses:
check if the imported module has an attribute by that name
if not, attempt to import a submodule with that name and then check the imported module again for that attribute
if the attribute is not found,
is raised.
otherwise, a reference to that value is stored in the current namespace, using the name in the as clause if it is present, otherwise using the attribute name
Examples:
importfoo# foo imported and bound locallyimportfoo.bar.baz# foo, foo.bar, and foo.bar.baz imported, foo bound locallyimportfoo.bar.bazasfbb# foo, foo.bar, and foo.bar.baz imported, foo.bar.baz bound as fbbfromfoo.barimportbaz# foo, foo.bar, and foo.bar.baz imported, foo.bar.baz bound as bazfromfooimportattr# foo imported and foo.attr bound as attrIf the list of identifiers is replaced by a star ('*'), all public names defined in the module are bound in the local namespace for the scope where the
statement occurs.
The public names defined by a module are determined by checking the module’s namespace for a variable named __all__; if defined, it must be a sequence of strings which are names defined or imported by that module. Names containing non-ASCII characters must be in the
NFKC; see
for details. The names given in __all__ are all considered public and are required to exist. If __all__ is not defined, the set of public names includes all names found in the module’s namespace which do not begin with an underscore character ('_'). __all__ should contain the entire public API. It is intended to avoid accidentally exporting items that are not part of the API (such as library modules which were imported and used within the module).
The wild card form of import — frommoduleimport* — is only allowed at the module level. Attempting to use it in class or function definitions will raise a
.
When specifying what module to import you do not have to specify the absolute name of the module. When a module or package is contained within another package it is possible to make a relative import within the same top package without having to mention the package name. By using leading dots in the specified module or package after
you can specify how high to traverse up the current package hierarchy without specifying exact names. One leading dot means the current package where the module making the import exists. Two dots means up one package level. Three dots is up two levels, etc. So if you execute from.importmod from a module in the pkg package then you will end up importing pkg.mod. If you execute from..subpkg2importmod from within pkg.subpkg1 you will import pkg.subpkg2.mod. The specification for relative imports is contained in the
section.
is provided to support applications that determine dynamically the modules to be loaded.
Raises an
import with arguments module, filename, sys.path, sys.meta_path, sys.path_hooks.
7.11.1. Future statements
A future statement is a directive to the compiler that a particular module should be compiled using syntax or semantics that will be available in a specified future release of Python where the feature becomes standard.
The future statement is intended to ease migration to future versions of Python that introduce incompatible changes to the language. It allows use of the new features on a per-module basis before the release in which the feature becomes standard.
future_stmt: "from""__future__""import"
["as"
] (","
["as"
])* | "from""__future__""import""("
["as"
] (","
["as"
])* [","] ")"feature:
A future statement must appear near the top of the module. The only lines that can appear before a future statement are:
the module docstring (if any),
comments,
blank lines, and
other future statements.
The only feature that requires using the future statement is annotations (see
).
All historical features enabled by the future statement are still recognized by Python 3. The list includes absolute_import, division, generators, generator_stop, unicode_literals, print_function, nested_scopes and with_statement. They are all redundant because they are always enabled, and only kept for backwards compatibility.
A future statement is recognized and treated specially at compile time: Changes to the semantics of core constructs are often implemented by generating different code. It may even be the case that a new feature introduces new incompatible syntax (such as a new reserved word), in which case the compiler may need to parse the module differently. Such decisions cannot be pushed off until runtime.
For any given release, the compiler knows which feature names have been defined, and raises a compile-time error if a future statement contains a feature not known to it.
The direct runtime semantics are the same as for any import statement: there is a standard module
, described later, and it will be imported in the usual way at the time the future statement is executed.
The interesting runtime semantics depend on the specific feature enabled by the future statement.
Note that there is nothing special about the statement:
import__future__[asname]That is not a future statement; it’s an ordinary import statement with no special semantics or syntax restrictions.
Code compiled by calls to the built-in functions
and
that occur in a module M containing a future statement will, by default, use the new syntax or semantics associated with the future statement. This can be controlled by optional arguments to compile() — see the documentation of that function for details.
A future statement typed at an interactive interpreter prompt will take effect for the rest of the interpreter session. If an interpreter is started with the
option, is passed a script name to execute, and the script includes a future statement, it will be in effect in the interactive session started after the script is executed.
See also
- Back to the __future__The original proposal for the __future__ mechanism.
7.12. The global statement
global_stmt: "global"
(","
)* The
statement causes the listed identifiers to be interpreted as globals. It would be impossible to assign to a global variable without global, although free variables may refer to globals without being declared global.
The global statement applies to the entire current scope (module, function body or class definition). A
is raised if a variable is used or assigned to prior to its global declaration in the scope.
At the module level, all variables are global, so a global statement has no effect. However, variables must still not be used or assigned to prior to their global declaration. This requirement is relaxed in the interactive prompt (
).
Programmer’s note:
is a directive to the parser. It applies only to code parsed at the same time as the global statement. In particular, a global statement contained in a string or code object supplied to the built-in
function does not affect the code block containing the function call, and code contained in such a string is unaffected by global statements in the code containing the function call. The same applies to the
and
functions.
7.13. The nonlocal statement
nonlocal_stmt: "nonlocal"
(","
)* When the definition of a function or class is nested (enclosed) within the definitions of other functions, its nonlocal scopes are the local scopes of the enclosing functions. The
statement causes the listed identifiers to refer to names previously bound in nonlocal scopes. It allows encapsulated code to rebind such nonlocal identifiers. If a name is bound in more than one nonlocal scope, the nearest binding is used. If a name is not bound in any nonlocal scope, or if there is no nonlocal scope, a
is raised.
The
statement applies to the entire scope of a function or class body. A
is raised if a variable is used or assigned to prior to its nonlocal declaration in the scope.
See also
- Access to Names in Outer ScopesThe specification for the
statement.
Programmer’s note:
is a directive to the parser and applies only to code parsed along with it. See the note for the
statement.
7.14. The type statement
type_stmt: 'type'
[
] "="
The type statement declares a type alias, which is an instance of
.
For example, the following statement creates a type alias:
typePoint=tuple[float,float]This code is roughly equivalent to:
annotation-defVALUE_OF_Point():returntuple[float,float]Point=typing.TypeAliasType("Point",VALUE_OF_Point())annotation-def indicates an
, which behaves mostly like a function, but with several small differences.
The value of the type alias is evaluated in the annotation scope. It is not evaluated when the type alias is created, but only when the value is accessed through the type alias’s __value__ attribute (see
). This allows the type alias to refer to names that are not yet defined.
Type aliases may be made generic by adding a
after the name. See
for more.
type is a
.
Added in version 3.12.
See also
- Type Parameter SyntaxIntroduced the type statement and syntax for generic classes and functions.