對於 NumPy 陣列中的每個元素,返回一個副本,其中已刪除尾隨字元。


要返回一個數組的副本,其中已刪除尾隨字元,請在 Python NumPy 中使用 **numpy.char.rstrip()** 方法。“chars”引數用於設定一個字串,該字串指定要刪除的字元集。如果省略或為 None,則 chars 引數預設為刪除空格。chars 引數不是字首;相反,會剝離其所有值的組合。

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

chars 引數是一個字串,指定要刪除的字元集。如果省略或為 None,則 chars 引數預設為刪除空格。chars 引數不是字尾;相反,會剝離其所有值的組合。

步驟

首先,匯入所需的庫 -

import numpy as np

建立一個包含一些前導和尾隨字元的字串的一維陣列 -

arr = np.array(['zzzzTomzzzz', 'zzzJohnzzzzz', 'zKatezzz', 'zAmyzzz', 'zBradzzzzzz'])

顯示我們的陣列 -

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)

要返回一個數組的副本,其中已刪除尾隨字元,請在 Python NumPy 中使用 numpy.char.rstrip() 方法。“chars”引數用於設定一個字串,該字串指定要刪除的字元集。如果省略或為 None,則 chars 引數預設為刪除空格。chars 引數不是字首;相反,會剝離其所有值的組合 -

print("
Result...
",np.char.rstrip(arr, 'z'))

示例

import numpy as np

# Create a One-Dimensional array of string with some leading and trailing characters
arr = np.array(['zzzzTomzzzz', 'zzzJohnzzzzz', 'zKatezzz', 'zAmyzzz', 'zBradzzzzzz'])

# 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 trailing characters removed, use the numpy.char.rstrip() 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.rstrip(arr, 'z'))

輸出

Array...
['zzzzTomzzzz' 'zzzJohnzzzzz' 'zKatezzz' 'zAmyzzz' 'zBradzzzzzz']

Array datatype...
<U12

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

Result...
['zzzzTom' 'zzzJohn' 'zKate' 'zAmy' 'zBrad']

更新於: 2022年2月18日

136 次瀏覽

開啟您的 職業生涯

透過完成課程獲得認證

開始學習
廣告

© . All rights reserved.