Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

각 요소에 대해 Python에서 하위 문자열이 있는 문자열에서 가장 낮은 인덱스를 반환합니다.

<시간/>

하위 문자열 sub가 있는 문자열에서 가장 낮은 인덱스를 반환하려면 Python Numpy에서 numpy.char.find() 메서드를 사용합니다. 이 메서드는 int의 출력 배열을 반환합니다. sub가 발견되지 않으면 -1을 반환합니다. 첫 번째 매개변수는 입력 배열입니다. 두 번째 매개변수는 검색할 하위 문자열입니다.

단계

먼저 필요한 라이브러리를 가져옵니다 -

import numpy as np

1차원 문자열 배열 생성 -

arr = np.array(['KATIE', 'JOHN', 'KATE', 'AmY', 'BRADley'])

배열 표시하기 -

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

데이터 유형 가져오기 -

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

배열의 차원 가져오기 -

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

배열의 모양 가져오기 -

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

배열의 요소 수 가져오기 -

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

하위 문자열 sub가 있는 문자열에서 가장 낮은 인덱스를 반환하려면 numpy.char.find() 메서드를 사용하십시오 -

print("\nResult (find)...\n",np.char.find(arr, 'AT'))

import numpy as np

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

# 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)

# To return the lowest index in the string where substring sub is found, use the numpy.char.find() method in Python Numpy
# The method returns the output array of ints. Returns -1 if sub is not found.
# The first parameter is the input array
# The second parameter is the substring to be searched
print("\nResult (find)...\n",np.char.find(arr, 'AT'))

출력

Array...
['KATIE' 'JOHN' 'KATE' 'AmY' 'BRADley']

Array datatype...
<U7

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

Result (find)...
[ 1 -1 1 -1 -1]