Commit e04fe8c6 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Typo fix; add clarifying word

parent 3e3cb790
...@@ -330,7 +330,7 @@ List comprehensions have the form: ...@@ -330,7 +330,7 @@ List comprehensions have the form:
[ expression for expr in sequence1 [ expression for expr in sequence1
for expr2 in sequence2 ... for expr2 in sequence2 ...
for exprN in sequenceN for exprN in sequenceN
if condition if condition ]
\end{verbatim} \end{verbatim}
The \keyword{for}...\keyword{in} clauses contain the sequences to be The \keyword{for}...\keyword{in} clauses contain the sequences to be
...@@ -356,7 +356,7 @@ for expr1 in sequence1: ...@@ -356,7 +356,7 @@ for expr1 in sequence1:
# resulting list. # resulting list.
\end{verbatim} \end{verbatim}
This means that when there are \keyword{for}...\keyword{in} clauses, This means that when there are multiple \keyword{for}...\keyword{in} clauses,
the resulting list will be equal to the product of the lengths of all the resulting list will be equal to the product of the lengths of all
the sequences. If you have two lists of length 3, the output list is the sequences. If you have two lists of length 3, the output list is
9 elements long: 9 elements long:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment