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

配列内の文字列要素がPythonの接尾辞で終わる場合にTrueであるブール配列を返します


配列内の文字列要素が接尾辞で終わるTrueのブール配列を返すには、Python Numpyのnumpy.char.endswith()メソッドを使用します。最初のパラメーターは入力配列です。 2番目のパラメーターは接尾辞です。 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)

配列内の文字列要素が接尾辞で終わるTrueのブール配列を返すには、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]

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

    Python Numpyのnumpy.char.rindex()メソッドを使用して、substringsubが見つかった文字列の最高のインデックスを返します。このメソッドは、intの出力配列を返します。 subが見つからない場合、ValueErrorを発生させます。最初のパラメーターは入力配列です。 2番目のパラメーターは、検索するサブストリングです。 3番目と4番目のパラメーターはオプションの引数であり、開始と終了はスライス表記のように解釈されます。 ステップ まず、必要なライブラリをインポートします- import numpy as np 文字列の1次元配列を作成する- arr = n

  2. Pythonで等しい積を持つ2つのサブ配列に配列を分割する要素を見つけます

    サイズNの配列があるとします。配列を等しい積の2つの異なるサブ配列に分割する要素を見つける必要があります。そのようなパーティションが不可能な場合は-1を返します。 したがって、入力が[2,5,3,2,5]の場合、出力は3になり、サブ配列は{2、5}と{2、5}になります。 これを解決するには、次の手順に従います- n:=配列のサイズ multiply_pref:=新しいリスト multiply_prefの最後にarray[0]を挿入します 1からnの範囲のiについては、 multiply_prefの最後にmultiply_pref[i-1]*array[i]を挿入します mu