1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
for target in iter:
pass
for target in (1, 2, 3):
pass
for target.attr in call():
pass
for target[0] in x.attr:
pass
for target in x <= y:
pass
for target in a and b:
pass
for a, b, c, in iter:
pass
for (a, b) in iter:
pass
for target in [1, 2]:
pass
for target in await x: ...
for target in lambda x: x: ...
for target in x if True else y: ...
if x:
for target in iter:
pass
# This `else` is not part of the `try` statement, so don't raise an error
else:
pass