Trả về chỉ số thấp nhất trong chuỗi nơi tìm thấy chuỗi con bằng phương thức numpy.char.index () 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', 'CRATE'])
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ỉ số thấp nhất trong chuỗi nơi tìm thấy chuỗi con bằng phương thức numpy.char.index (). 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ụ -
print("\nResult (index() method)...\n",np.char.index(arr, 'AT', start = 1, end= 4))
Ví dụ
import numpy as np # Create a One-Dimensional array of strings arr = np.array(['KATIE', 'KATE', 'CRATE']) # 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 lowest index in the string where substring sub is found using the numpy.char.index() method in Python Numpy # The method returns the output array of ints. Raises ValueError if sub is not found. print("\nResult (index() method)...\n",np.char.index(arr, 'AT', start = 1, end= 4))
Đầu ra
Array... ['KATIE' 'KATE' 'CRATE'] Array datatype... <U5 Array Dimensions... 1 Our Array Shape... (3,) Number of elements in the Array... 3 Result (index() method)... [1 1 2]