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 cf5bdfc commit c86d75aCopy full SHA for c86d75a
Doc/faq/programming.rst
@@ -228,7 +228,7 @@ they all return ``16``::
228
This happens because ``x`` is not local to the lambdas, but is defined in
229
the outer scope, and it is accessed when the lambda is called --- not when it
230
is defined. At the end of the loop, the value of ``x`` is ``4``, so all the
231
-functions now return ``4**2``, or ``16``. You can also verify this by
+functions now return ``4**2``, that is ``16``. You can also verify this by
232
changing the value of ``x`` and see how the results of the lambdas change::
233
234
>>> x = 8
0 commit comments