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.
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', 'BRATleuATp'])
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'))
Ví dụ
import numpy as np # Create a One-Dimensional array of strings arr = np.array(['KATIE', 'KATE', 'BRATleuATp']) # 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 print("\nResult (rindex() method)...\n",np.char.rindex(arr, 'AT'))
Đầu ra
Array... ['KATIE' 'KATE' 'BRATleuATp'] Array datatype... <U10 Array Dimensions... 1 Our Array Shape... (3,) Number of elements in the Array... 3 Result (rindex() method)... [1 1 7]