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