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 9c2d09d commit ed755c1Copy full SHA for ed755c1
docs/writing/style.rst
@@ -357,9 +357,7 @@ Instead, use a list comprehension:
357
358
.. code-block:: python
359
360
- four_lists = [[] for __ in xrange(4)]
361
-
362
-Note: Use range() instead of xrange() in Python 3.
+ four_lists = [[] for __ in range(4)]
363
364
Create a string from a list
365
~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments