Списки в Python 2.x и 3.x с функцией Range
http://pythoncentral.io/pythons-range-function-explained/
What is Python's range() Function?
As an experienced Python developer, or even a beginner, you've likely heard of the Pythonrange()
function. But what does it do? In a nutshell, it generates a list of numbers, which is generally used to iterate over with for
loops. There's many use cases. Often you will want to use this when you
want to perform an action X number of times, where you may or may not
care about the index. Other times you may want to iterate over a list
(or another iterable object), while being able to have the index
available.The
range()
function works a little bit differently
between Python 2.x and 3.x under the hood, however the concept is the
same. We'll get to that a bit later, however.Python's range() Parameters
Therange()
function has two sets of parameters, as follows:range(stop)
stop
: Number of integers (whole numbers) to generate, starting from zero. eg.range(3) == [0, 1, 2]
.
range([start], stop[, step])
start
: Starting number of the sequence.stop
: Generate numbers up to, but not including this number.step
: Difference between each number in the sequence.
- All parameters must be integers.
- All parameters can be positive or negative.
range()
(and Python in general) is 0-index based, meaning list indexes start at 0, not 1. eg. The syntax to access the first element of a list ismylist[0]
. Therefore the last integer generated byrange()
is up to, but not including,stop
. For examplerange(0, 5)
generates integers from 0 up to, but not including, 5.
Python's range() Function Examples
Simple Usage
Iterating Lists
99 Bottles of Beer on the Wall...
With the following code:Python's range() vs xrange() Functions
You may have heard of a function known asxrange()
. This is a function that is present in Python 2.x, however it was renamed to range()
in Python 3.x, and the original range()
function was deprecated in Python 3.x. So what's the difference? Well, in Python 2.x range()
produced a list, and xrange()
returned an iterator - a sequence object. We can see this in the following example:range()
function got its own type
. In basic terms, if you want to use range()
in a for
loop, then you're good to go. However you can't use it purely as a list
object. For example you cannot slice a range
type.When you're using an iterator, every loop of the
for
statement produces the next number on the fly. Whereas the original range()
function produced all numbers instantaneously, before the for
loop started executing. The problem with the original range()
function was that it used a very large amount of memory when producing a
lot of numbers. However it tends to be quicker with a small amount of
numbers. Note that in Python 3.x, you can still produce a list by
passing the generator returned to the list()
function. As follows:range()
and xrange()
function, you may want to check out this article.Using floats with Python's range() function
Unfortunately therange()
function doesn't support the float
type. However don't get upset too soon! We can easily implement it with
a function. There's several ways it can be done, however here's one.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
>>> # Note: All arguments are required.
>>> # We're not fancy enough to implement all.
>>> def frange(start, stop, step):
... i = start
... while i < stop:
... yield i
... i += step
...
>>> for i in frange(0.5, 1.0, 0.1):
... print(i)
...
0.5
0.6
0.7
0.8
0.9
1.0
|
To Practice: Try this interactive course on the basics of Lists, Functions, Packages and NumPy in Python.
No hay comentarios:
Publicar un comentario