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

Trả về chỉ số cao nhất trong chuỗi mà chuỗi con được tìm thấy trong một dải bằng cách sử dụng Python rindex ()

Trả về chỉ số cao nhất trong chuỗi nơi tìm thấy chuỗi con bằng phương thức numpy.char.rindex () trong Python Numpy. Phương thức trả về mảng đầu ra của các int. Tăng ValueError nếu không tìm thấy phụ. Tham số đầu tiên là mảng đầu vào. Tham số thứ hai là chuỗi con cần tìm kiếm. Tham số thứ ba và thứ tư là các đối số tùy chọn, trong đó bắt đầu và kết thúc được hiểu như trong ký hiệu lát cắt.

Các bước

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

import numpy as np

Tạo mảng chuỗi một chiều -

arr = np.array(['KATIE', 'KATE', 'BRATleukATp'])

Hiển thị mảng của chúng tôi -

print("Array...\n",arr)

Nhận loại dữ liệu -

print("\nArray datatype...\n",arr.dtype)

Nhận các kích thước của Mảng -

print("\nArray Dimensions...\n",arr.ndim)

Nhận hình dạng của Mảng -

print("\nOur Array Shape...\n",arr.shape)

Nhận số phần tử của Mảng -

print("\nNumber of elements in the Array...\n",arr.size)

Trả về chỉ mục cao nhất trong chuỗi nơi tìm thấy chuỗi con bằng phương thức numpy.char.rindex () -

print("\nResult (rindex() method)...\n",np.char.rindex(arr, 'AT', start = 1, end= 9))

Ví dụ

import numpy as np

# Create a One-Dimensional array of strings
arr = np.array(['KATIE', 'KATE', 'BRATleukATp'])

# Displaying our array
print("Array...\n",arr)

# Get the datatype
print("\nArray datatype...\n",arr.dtype)

# Get the dimensions of the Array
print("\nArray Dimensions...\n",arr.ndim)

# Get the shape of the Array
print("\nOur Array Shape...\n",arr.shape)

# Get the number of elements of the Array
print("\nNumber of elements in the Array...\n",arr.size)

# Return the highest index in the string where substring sub is found using the numpy.char.rindex() method in Python Numpy
# The method returns the output array of ints. Raises ValueError if sub is not found.

print("\nResult (rindex() method)...\n",np.char.rindex(arr, 'AT', start = 1, end= 9))

Đầu ra

Array...
['KATIE' 'KATE' 'BRATleukATp']

Array datatype...
<U11

Array Dimensions...
1

Our Array Shape...
(3,)

Number of elements in the Array...
3

Result (rindex() method)...
[1 1 2]