在 Python 中返回一个包含不重叠子字符串出现次数的数组

pythonnumpyserver side programmingprogramming

要返回一个包含不重叠子字符串出现次数的数组,请使用 Python Numpy 中的 numpy.char.count() 方法。第一个参数是 sub,即要搜索的子字符串。numpy.char 模块为 numpy.str_ 类型的数组提供了一组矢量化字符串操作

步骤

首先,导入所需的库 −

import numpy as np

创建一个一维字符串数组 −

arr = np.array(['kATIE', 'JOHN', 'KAte', 'AmY', 'BRADley'])

显示我们的数组 −

print("数组...\n",arr)

获取数据类型 −

print("\n数组数据类型...\n",arr.dtype)

获取数组的维度 −

print("\n数组的维度...\n",arr.ndim)

获取数组的形状 −

print("\n我们的数组形状...\n",arr.shape)

Get the number of elements of the Array −

print("\数组中的元素数量...\n",arr.size)

要返回一个包含不重叠子字符串出现次数的数组,请使用 Python Nump 中的 numpy.char.count() 方法。第一个参数是 sub,即要搜索的子字符串 −

print("\nResult (count)...\n",np.char.count(arr, 'A'))

示例

import numpy as np

# 创建一维字符串数组
arr = np.array(['kATIE', 'JOHN', 'KAte', 'AmY', 'BRADley'])

# 显示我们的数组
print("数组...\n",arr)

# 获取数据类型
print("\n数组的数据类型...\n",arr.dtype)

# 获取数组的维度
print("\n数组的维度...\n",arr.ndim)

# 获取数组的形状
print("\n我们数组的形状...\n",arr.shape)

# 获取数组元素的数量
print("\数组中的元素数量...\n",arr.size)

# 要返回包含不重叠子字符串出现次数的数组,请使用 Python Numpy 中的 numpy.char.count() 方法
# 第一个参数是 sub,即要搜索的子字符串
print("\nResult (count)...\n",np.char.count(arr, 'A'))

输出

数组...
['kATIE' 'JOHN' 'KAte' 'AmY' 'BRADley']

数组数据类型...
<U7

数组的维度...
1

我们数组的形状...
(5,)

数组中元素的数量...
5

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

相关文章