배열의 문자열 요소가 접미사로 끝나는 부울 배열을 반환하려면 Python Numpy에서 numpy.char.endswith() 메서드를 사용하십시오. 첫 번째 매개변수는 입력 배열입니다. 두 번째 매개변수는 접미사입니다. 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)
배열의 문자열 요소가 접미사로 끝나는 참인 부울 배열을 반환하려면 numpy.char.endswith() 메서드를 사용하십시오 -
print("\nResult (endswith)...\n",np.char.endswith(arr, 'E'))
예시
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 a boolean array which is True where the string element in array ends with suffix, use the numpy.char.endswith() method in Python Numpy # The first parameter is the input array # The second parameter is the suffix print("\nResult (endswith)...\n",np.char.endswith(arr, 'E'))
출력
Array... ['KATIE' 'JOHN' 'KATE' 'AmY' 'BRADley'] Array datatype... <U7 Array Dimensions... 1 Our Array Shape... (5,) Number of elements in the Array... 5 Result (endswith)... [ True False True False False]