左對齊陣列元素並在 Numpy 中設定用於填充的字元


要左對齊陣列元素並設定用於填充的字元,請在 Python Numpy 中使用 **numpy.char.ljust()** 方法。“**width**”引數是結果字串的長度。“fillchar”引數是要用於填充的字元。

該函式返回一個 str 或 unicode 型別的輸出陣列,具體取決於輸入型別。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.ljust() 方法。“width”引數是結果字串的長度。“fillchar”引數是要用於填充的字元 -

print("
Result...
",np.char.ljust(arr, width = 15, fillchar = '$'))

示例

import numpy as np

# Create a One-Dimensional array of string
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 left-justify elements of an array and set the characters to use for padding, use the numpy.char.ljust() method in Python Numpy # The "width" parameter is the length of the resulting strings # The "fillchar" parameter is the character to use for padding print("
Result...
",np.char.ljust(arr, width = 15, fillchar = '$'))

輸出

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

Array datatype...
<U4

Array Dimensions...
1

Our Array Shape...
(5,)

Number of elements in the Array...
5

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

更新於: 2022年2月18日

149 次檢視

啟動您的 職業生涯

透過完成課程獲得認證

立即開始
廣告

© . All rights reserved.