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 a859680 commit 7e941faCopy full SHA for 7e941fa
1 file changed
Doc/faq/programming.rst
@@ -1175,7 +1175,7 @@ Here are three variations.::
1175
mylist[:] = (x for x in mylist if keep_condition)
1176
mylist[:] = [x for x in mylist if keep_condition]
1177
1178
-If space is not an issue, the list comprehension may be fastest.
+The list comprehension may be fastest.
1179
1180
1181
How do you make an array in Python?
0 commit comments