對於 NumPy 陣列中的每個元素,返回一個副本,其中去除了開頭和結尾的字元。


要返回一個數組的副本,其中去除了開頭和結尾的字元,請在 Python NumPy 中使用 **numpy.char.strip()** 方法。 "chars" 引數用於設定一個字串,指定要移除的字元集。如果省略或為 None,則 chars 引數預設為移除空格。chars 引數不是字首;相反,會去除其所有值的組合。

numpy.char 模組為型別為 numpy.str_ 或 numpy.bytes_ 的陣列提供了一組向量化的字串操作。

步驟

首先,匯入所需的庫:

import numpy as np

建立一個包含一些開頭和結尾字元的字串的一維陣列:

arr = np.array(['$$Tom$', '$$$$John$$', '$Kate$$', '$Amy$$$$$$$$$', '$Brad$'])

顯示我們的陣列:

print("Array...
",arr)

獲取資料型別:

print("
Array datatype...
",arr.dtype)

獲取陣列的維度:

print("
Array Dimensions...
",arr.ndim)

獲取陣列的形狀:

print("
Our Array Shape...
",arr.shape)

獲取陣列的元素數量:

print("
Elements in the Array...
",arr.size)

要返回一個數組的副本,其中去除了開頭和結尾的字元,請使用 numpy.char.strip() 方法。"chars" 引數用於設定一個字串,指定要移除的字元集。如果省略或為 None,則 chars 引數預設為移除空格。chars 引數不是字首;相反,會去除其所有值的組合:

print("
Result...
",np.char.strip(arr, '$'))

示例

import numpy as np
# Create a One-Dimensional array of string with some leading and trailing characters
arr = np.array(['$$Tom$', '$$$$John$$', '$Kate$$', '$Amy$$$$$$$$$', '$Brad$'])

# Displaying our array
print("Array...
",arr) # Get the datatype print("
Array datatype...
",arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # Get the number of elements of the Array print("
Number of elements in the Array...
",arr.size) # To return a copy of an array with the leading and trailing characters removed, use the numpy.char.strip() method in Python Numpy # The "chars" parameter is used to set a string specifying the set of characters to be removed. # If omitted or None, the chars argument defaults to removing whitespace. # The chars argument is not a prefix; rather, all combinations of its values are stripped. print("
Result...
",np.char.strip(arr, '$'))

輸出

Array...
['$$Tom$' '$$$$John$$' '$Kate$$' '$Amy$$$$$$$$$' '$Brad$']

Array datatype...
<U13

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

Result...
['Tom' 'John' 'Kate' 'Amy' 'Brad']

更新於: 2022-02-22

87 次檢視

開啟你的 職業生涯

透過完成課程獲得認證

開始學習
廣告

© . All rights reserved.