More Control Flow Tools - Python 3.9.5 Documentation
More Control Flow Tools - Python 3.9.5 Documentation
4.1. if Statements
Perhaps the most well-known statement type is the if statement. For
example:
>>>
>>> x = int(input("Please enter an integer: "))
>>> if x < 0:
... x = 0
... elif x == 0:
... print('Zero')
... elif x == 1:
... print('Single')
... else:
... print('More')
...
More
There can be zero or more elif parts, and the else part is
optional. The keyword ‘ elif ’ is short
for ‘else if’, and is useful
to avoid excessive indentation. An if … elif …
elif … sequence is a
substitute for the switch or
case statements found in other languages.
>>>
>>> # Measure some strings:
...
cat 3
window 6
defenestrate 12
Code that modifies a collection while iterating over that same collection can
be tricky to get right.
Instead, it is usually more straight-forward to loop
over a copy of the collection or to create a new
collection:
if status == 'inactive':
del users[user]
active_users = {}
if status == 'active':
active_users[user] = status
>>>
>>> for i in range(5):
... print(i)
...
The given end point is never part of the generated sequence; range(10) generates
10 values,
the legal indices for items of a sequence of length 10. It
is possible to let the range start at
another number, or to specify a different
increment (even negative; sometimes this is called the
‘step’):
range(5, 10)
5, 6, 7, 8, 9
range(0, 10, 3)
0, 3, 6, 9
To iterate over the indices of a sequence, you can combine range() and
len() as follows:
>>>
>>> a = ['Mary', 'had', 'a', 'little', 'lamb']
...
0 Mary
1 had
2 a
3 little
4 lamb
>>>
>>> print(range(10))
range(0, 10)
>>>
>>> sum(range(4)) # 0 + 1 + 2 + 3
Later we will see more functions that return iterables and take iterables as
arguments. Lastly,
maybe you are curious about how to get a list from a range.
Here is the solution:
>>>
>>> list(range(4))
[0, 1, 2, 3]
Loop statements may have an else clause; it is executed when the loop
terminates through
exhaustion of the iterable (with for ) or when the
condition becomes false (with while ), but not
when the loop is
terminated by a break statement. This is exemplified by the
following loop,
which searches for prime numbers:
>>>
>>> for n in range(2, 10):
... if n % x == 0:
... break
... else:
...
2 is a prime number
3 is a prime number
4 equals 2 * 2
5 is a prime number
6 equals 2 * 3
7 is a prime number
8 equals 2 * 4
9 equals 3 * 3
(Yes, this is the correct code. Look closely: the else clause belongs to
the for loop, not the if
statement.)
When used with a loop, the else clause has more in common with the
else clause of a try
statement than it does with that of
if statements: a try statement’s else clause runs
when no
exception occurs, and a loop’s else clause runs when no break
occurs. For more on the try
statement and exceptions, see
Handling Exceptions.
The continue statement, also borrowed from C, continues with the next
iteration of the loop:
>>>
>>> for num in range(2, 10):
... if num % 2 == 0:
... continue
...
...
>>>
>>> class MyEmptyClass:
... pass
...
>>>
>>> def initlog(*args):
...
>>>
>>> def fib(n): # write Fibonacci series up to n
... a, b = 0, 1
... a, b = b, a+b
... print()
...
... fib(2000)
The first statement of the function body can optionally be a string literal;
this string literal is the
function’s documentation string, or docstring.
(More about docstrings can be found in the section
Documentation Strings.)
There are tools which use docstrings to automatically produce online or
printed
documentation, or to let the user interactively browse through code; it’s good
practice to
include docstrings in code that you write, so make a habit of it.
The execution of a function introduces a new symbol table used for the local
variables of the
function. More precisely, all variable assignments in a
function store the value in the local symbol
table; whereas variable references
first look in the local symbol table, then in the local symbol
tables of
enclosing functions, then in the global symbol table, and finally in the table
of built-in
names. Thus, global variables and variables of enclosing functions
cannot be directly assigned a
value within a function (unless, for global
variables, named in a global statement, or, for
variables of enclosing
functions, named in a nonlocal statement), although they may be
referenced.
The actual parameters (arguments) to a function call are introduced in the local
symbol table of
the called function when it is called; thus, arguments are
passed using call by value (where the
value is always an object reference,
not the value of the object). [1] When a function calls another
function,
or calls itself recursively, a new
local symbol table is created for that call.
A function definition associates the function name with the function object in
the current symbol
table. The interpreter recognizes the object pointed to by
that name as a user-defined function.
Other names can also point to that same
function object and can also be used to access the
function:
>>>
>>> fib
>>> f = fib
>>> f(100)
0 1 1 2 3 5 8 13 21 34 55 89
Coming from other languages, you might object that fib is not a function but
a procedure since it
doesn’t return a value. In fact, even functions without a
return statement do return a value,
albeit a rather boring one. This
value is called None (it’s a built-in name). Writing the value None
is
normally suppressed by the interpreter if it would be the only value written.
You can see it if you
really want to using print() :
>>>
>>> fib(0)
>>> print(fib(0))
None
>>>
>>> def fib2(n): # return Fibonacci series up to n
... result = []
... a, b = 0, 1
... a, b = b, a+b
...
The most useful form is to specify a default value for one or more arguments.
This creates a
function that can be called with fewer arguments than it is
defined to allow. For example:
while True:
ok = input(prompt)
return True
return False
retries = retries - 1
if retries < 0:
print(reminder)
The default values are evaluated at the point of function definition in the
defining scope, so that
i = 5
def f(arg=i):
print(arg)
i = 6
f()
will print 5 .
Important warning: The default value is evaluated only once. This makes a
difference when the
default is a mutable object such as a list, dictionary, or
instances of most classes. For example,
the following function accumulates the
arguments passed to it on subsequent calls:
L.append(a)
return L
print(f(1))
print(f(2))
print(f(3))
[1]
[1, 2]
[1, 2, 3]
If you don’t want the default to be shared between subsequent calls, you can
write the function
like this instead:
if L is None:
L = []
L.append(a)
return L
>>>
>>> def function(a):
... pass
...
print(arg)
print("-" * 40)
for kw in keywords:
shopkeeper="Michael Palin",
client="John Cleese",
----------------------------------------
Note that the order in which the keyword arguments are printed is guaranteed
to match the order
in which they were provided in the function call.
| | |
| Positional or keyword |
| - Keyword only
-- Positional only
where / and * are optional. If used, these symbols indicate the kind of
parameter by how the
arguments may be passed to the function:
positional-only, positional-or-keyword, and keyword-
only. Keyword parameters
are also referred to as named parameters.
Consider the following example function definitions paying close attention to the
markers / and
*:
>>>
>>> def standard_arg(arg):
... print(arg)
...
... print(arg)
...
... print(arg)
...
>>>
>>> standard_arg(2)
>>> standard_arg(arg=2)
>>>
>>> pos_only_arg(1)
>>> pos_only_arg(arg=1)
>>>
>>> kwd_only_arg(3)
>>> kwd_only_arg(arg=3)
And the last uses all three calling conventions in the same function
definition:
>>>
>>> combined_example(1, 2, 3)
1 2 3
1 2 3
Finally, consider this function definition which has a potential collision between the positional
argument name and **kwds which has name as a key:
There is no possible call that will make it return True as the keyword 'name'
will always bind to
the first parameter. For example:
>>>
>>> foo(1, **{'name': 2})
>>>
But using / (positional only arguments), it is possible since it allows name as a positional
argument and 'name' as a key in the keyword arguments:
True
4.7.3.5. Recap
The use case will determine which parameters to use in the function definition:
As guidance:
Finally, the least frequently used option is to specify that a function can be
called with an arbitrary
number of arguments. These arguments will be wrapped
up in a tuple (see Tuples and
Sequences). Before the variable number of arguments,
zero or more normal arguments may
occur.
file.write(separator.join(args))
...
'earth/mars/venus'
'earth.mars.venus'
>>>
>>> list(range(3, 6)) # normal call with separate arguments
[3, 4, 5]
[3, 4, 5]
In the same fashion, dictionaries can deliver keyword arguments with the
** -operator:
>>>
>>> def parrot(voltage, state='a stiff', action='voom'):
... print("if you put", voltage, "volts through it.", end=' ')
...
-- This parrot wouldn't VOOM if you put four million volts through it. E's bleedi
>>>
>>> def make_incrementor(n):
...
>>> f = make_incrementor(42)
>>> f(0)
42
>>> f(1)
43
The above example uses a lambda expression to return a function. Another use
is to pass a
small function as an argument:
>>>
>>> pairs = [(1, 'one'), (2, 'two'), (3, 'three'), (4, 'four')]
>>> pairs
The first line should always be a short, concise summary of the object’s
purpose. For brevity, it
should not explicitly state the object’s name or type,
since these are available by other means
(except if the name happens to be a
verb describing a function’s operation). This line should
begin with a capital
letter and end with a period.
If there are more lines in the documentation string, the second line should be
blank, visually
separating the summary from the rest of the description. The
following lines should be one or
more paragraphs describing the object’s calling
conventions, its side effects, etc.
The Python parser does not strip indentation from multi-line string literals in
Python, so tools that
process documentation have to strip indentation if
desired. This is done using the following
convention. The first non-blank line
after the first line of the string determines the amount of
indentation for
the entire documentation string. (We can’t use the first line since it is
generally
adjacent to the string’s opening quotes so its indentation is not
apparent in the string literal.)
Whitespace “equivalent” to this indentation is
then stripped from the start of all lines of the string.
Lines that are
indented less should not occur, but if they occur all their leading whitespace
should
be stripped. Equivalence of whitespace should be tested after expansion
of tabs (to 8 spaces,
normally).
>>>
>>> def my_function():
...
... """
... pass
...
>>> print(my_function.__doc__)
>>>
>>> def f(ham: str, eggs: str = 'eggs') -> str:
... print("Annotations:", f.__annotations__)
...
>>> f('spam')
Annotations: {'ham': <class 'str'>, 'return': <class 'str'>, 'eggs': <class 'str
Arguments: spam eggs
For Python, PEP 8 has emerged as the style guide that most projects adhere to;
it promotes a
very readable and eye-pleasing coding style. Every Python
developer should read it at some
point; here are the most important points
extracted for you:
This helps users with small displays and makes it possible to have several
code files side-
by-side on larger displays.
Use blank lines to separate functions and classes, and larger blocks of
code inside
functions.
When possible, put comments on a line of their own.
Use docstrings.
Use spaces around operators and after commas, but not directly inside
bracketing
constructs: a = f(1, 2) + g(3, 4) .
Name your classes and functions consistently; the convention is to use
UpperCamelCase
for classes and lowercase_with_underscores for functions
and methods. Always use
self as the name for the first method argument
(see A First Look at Classes for more on
classes and methods).
Don’t use fancy encodings if your code is meant to be used in international
environments.
Python’s default, UTF-8, or even plain ASCII work best in any
case.
Likewise, don’t use non-ASCII characters in identifiers if there is only the
slightest chance
people speaking a different language will read or maintain
the code.
Footnotes