Statements

Flow Control

`if`_

`elif`_

`else`_

Loops

for in
Loops over elements of an iterable object.
while
Executes block of code repeatedly while the specified condition is True.
continue
Skips the execution of the code below it and starts a new cycle of the loop.
break
Terminates the execution of a loop.
else (2)
Executes specified block of code after loop terminating condition other then break was met.

Generators

`yield`_

Classes

`class`_

`del`_

Context Managers

`with`_

Imports and Scope

`import`_

`from`_

`as`_

`global`_

Assertions

assert
Raises AssertionError if the specified expression evaluates to False.

Exceptions Handling

`try`_

`except`_

`finally`_

`raise`_