Report an issueopen_in_new
View sourceopen_in_new
Nightly
·
7.4
.
7.3
·
7.2
·
7.1
·
7.0
·
6.5
A language built-in type to support ranges. Example of range literal:
x = range(1, 10, 3)
Accessing elements is possible using indexing (starts from
0
):
e = x[1] # e == 2
Ranges do not support the
+
operator for concatenation.Similar to strings, ranges support slice operations:
range(10)[1:3] # range(1, 3)
range(10)[::2] # range(0, 10, 2)
range(10)[3:0:-1] # range(3, 0, -1)
Ranges are immutable, as in Python 3.