PEP 201: Resolve dangling hyphens (#3342)
This commit is contained in:
parent
e906b6a1bb
commit
e6412ac965
|
@ -46,8 +46,8 @@ Lockstep For-Loops
|
||||||
Lockstep for-loops are non-nested iterations over two or more
|
Lockstep for-loops are non-nested iterations over two or more
|
||||||
sequences, such that at each pass through the loop, one element from
|
sequences, such that at each pass through the loop, one element from
|
||||||
each sequence is taken to compose the target. This behavior can
|
each sequence is taken to compose the target. This behavior can
|
||||||
already be accomplished in Python through the use of the map() built-
|
already be accomplished in Python through the use of the map() built-in
|
||||||
in function::
|
function::
|
||||||
|
|
||||||
>>> a = (1, 2, 3)
|
>>> a = (1, 2, 3)
|
||||||
>>> b = (4, 5, 6)
|
>>> b = (4, 5, 6)
|
||||||
|
|
Loading…
Reference in New Issue