Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Hiển thị giá trị của tham số dừng của RangeIndex

Để hiển thị giá trị của tham số dừng của RangeIndex, hãy sử dụng index.stop tài sản ở Pandas.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

RangeIndex là một trường hợp đặc biệt tiết kiệm bộ nhớ của Int64Index được giới hạn để đại diện cho các phạm vi đơn điệu. Tạo chỉ mục phạm vi với bắt đầu, dừng và bước. Tên là tên được lưu trữ trong chỉ mục.

index = pd.RangeIndex(start=5, stop=20, step=2, name="data")

Hiển thị RangeIndex -

print("RangeIndex...\n",index)

Hiển thị giá trị thông số dừng -

print("\nRangeIndex stop value...\n",index.stop)

Ví dụ

Sau đây là mã -

import pandas as pd

# RangeIndex is a memory-saving special case of Int64Index limited to representing monotonic ranges.
# Using RangeIndex may in some instances improve computing speed.
# Create a range index with start, stop and step
# The name is the name to be stored in the index.
index = pd.RangeIndex(start=10, stop=30, step=2, name="data")

# Display the RangeIndex
print("RangeIndex...\n",index)

# Display the stop parameter value
print("\nRangeIndex stop value...\n",index.stop)

Đầu ra

Điều này sẽ tạo ra kết quả sau -

RangeIndex...
RangeIndex(start=10, stop=30, step=2,name='data')

RangeIndex stop value...
30