We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4839cb commit 9af4d49Copy full SHA for 9af4d49
Doc/reference/compound_stmts.rst
@@ -157,7 +157,7 @@ The :keyword:`for` statement is used to iterate over the elements of a sequence
157
for_stmt: "for" `target_list` "in" `starred_expression_list` ":" `suite`
158
: ["else" ":" `suite`]
159
160
-The :token:`~python-grammar:starred_expression_list` expression is evaluated once;
+The :token:`~python-grammar:starred_expression_list` expression is evaluated once;
161
it should yield an :term:`iterable` object. An :term:`iterator` is created for that iterable.
162
The first item provided by the iterator is then assigned to the target list using the standard
163
rules for assignments (see :ref:`assignment`), and the suite is executed. This
0 commit comments