Python
 Computer >> コンピューター >  >> プログラミング >> Python

Pythonで重複しない部分文字列の出現回数を含む配列を返します


重複しない部分文字列の出現回数を含む配列を返すには、Python Numpyのthenumpy.char.count()メソッドを使用します。最初のパラメータはサブ、つまり検索するサブストリングです。 numpy.charモジュールは、typenumpy.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のthenumpy.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]

  1. Pythonで要素ごとに文字列配列の長さを返す

    文字列配列の長さを要素ごとに返すには、PythonNumpyのnumpy.char.str_len()メソッドを使用します。このメソッドは整数の出力配列を返します。 ステップ まず、必要なライブラリをインポートします- import numpy as np 文字列の1次元配列を作成する- arr = np.array(['Amy', 'Scarlett', 'Katie', 'Brad', 'Tom']) 配列の表示- print("Array...\n",arr) データ型を取得- p

  2. Python rindex()を使用してサブ文字列が見つかった文字列の最高のインデックスを返します

    Python Numpyのnumpy.char.rindex()メソッドを使用して、substringsubが見つかった文字列の最高のインデックスを返します。このメソッドは、intの出力配列を返します。 subが見つからない場合、ValueErrorを発生させます。最初のパラメーターは入力配列です。 2番目のパラメーターは、検索するサブストリングです。 ステップ まず、必要なライブラリをインポートします- import numpy as np 文字列の1次元配列を作成する- arr = np.array(['KATIE', 'KATE', 'BRAT