Skip to content

Commit b1e159a

Browse files
remove superfluous description of RangeIndex
1 parent 87d9d5d commit b1e159a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pandas/core/indexes/range.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,13 +297,7 @@ def start(self) -> int:
297297
298298
This property returns the starting value of the `RangeIndex`. If the `start`
299299
value is not explicitly provided during the creation of the `RangeIndex`,
300-
it defaults to 0. The `start` property is part of the `RangeIndex`, which
301-
represents a range of integers in a memory-efficient manner. It is typically
302-
used when you need to generate a sequence of numbers with minimal memory
303-
overhead. The `RangeIndex` is frequently used as the default index for pandas
304-
DataFrames and Series when no explicit index is provided. This property allows
305-
users to access the starting point of the range, which may be useful for
306-
iteration, slicing, or other operations where the starting value is relevant.
300+
it defaults to 0.
307301
308302
See Also
309303
--------

0 commit comments

Comments
 (0)