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

파이썬에서 부분문자열의 비중첩 발생 횟수가 있는 배열을 반환합니다.

<시간/>

겹치지 않는 부분 문자열의 수로 배열을 반환하려면 Python Numpy에서 numpy.char.count() 메서드를 사용합니다. 첫 번째 매개변수는 하위, 즉 검색할 하위 문자열입니다. numpy.char 모듈은 numpy.str_

유형의 배열에 대해 벡터화된 문자열 작업 세트를 제공합니다.

단계

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

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)

부분 문자열이 겹치지 않는 횟수로 배열을 반환하려면 Python Nump에서 numpy.char.count() 메서드를 사용합니다. 첫 번째 매개변수는 하위, 즉 -

를 검색할 하위 문자열입니다.
print("\nResult (count)...\n",np.char.count(arr, 'A'))

예시

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 an array with the number of non-overlapping occurrences of substring, use the numpy.char.count() method in Python Numpy
# The first parameter is the sub i.e. the substring to search for
print("\nResult (count)...\n",np.char.count(arr, 'A'))

출력

Array...
['kATIE' 'JOHN' 'KAte' 'AmY' 'BRADley']

Array datatype...
<U7

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

Result (count)...
[1 0 1 1 1]