在 NumPy 中返回一個數組,該陣列的元素左對齊在一個長度為 width 的字串中


要返回一個數組,該陣列的元素左對齊在一個長度為 width 的字串中,請在 Python NumPy 中使用 **numpy.char.ljust()** 方法。“**width**”引數是結果字串的長度。該函式返回一個 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)

要返回一個數組,該陣列的元素左對齊在一個長度為 width 的字串中,請使用 numpy.char.ljust() 方法。“width”引數是結果字串的長度:

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

示例

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 return an array with the elements of an array left-justified in a string of length width, use the numpy.char.ljust() method in Python Numpy # The "width" parameter is the length of the resulting strings print("
Result...
",np.char.ljust(arr, width = 15))

輸出

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日

140 次瀏覽

啟動您的 職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.