mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 06:46:17 +00:00
Change xrange function to range function
This commit is contained in:
@@ -357,9 +357,7 @@ Instead, use a list comprehension:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
four_lists = [[] for __ in xrange(4)]
|
||||
|
||||
Note: Use range() instead of xrange() in Python 3.
|
||||
four_lists = [[] for __ in range(4)]
|
||||
|
||||
Create a string from a list
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Reference in New Issue
Block a user