numpy.core.defchararray.rjust(arr, width, fillchar=' ')
是另一個在numpy中執行字符串操作的函數。它返回一個數組,數組中的arr元素在長度寬度的字符串中右對齊,並使用填充每個數組元素的剩餘空間 fillchr
參數。如果 fillchr
不通過,則用空白填充剩餘空間。
參數:
arr :str或unicode的數組輸入數組。
width:每個字符串的最終寬度。
fillchar:填充剩餘空間的字符。
返回:[ndarray]根據輸入類型,輸出右對齊的str或unicode數組。
代碼1:
# Python program explaining
# numpy.char.rjust() method
# importing numpy
import numpy as geek
# input array
in_arr = geek.array(['Numpy', 'Python', 'Pandas'])
print ("Input array:", in_arr)
# setting the width of each string to 8
width = 8
# output array when fillchar is not passed
out_arr = geek.char.rjust(in_arr, width)
print ("Output right justified array:", out_arr)
輸出:
Input array: ['Numpy' 'Python' 'Pandas'] Output right justified array: [' Numpy' ' Python' ' Pandas']
代碼2:
# Python program explaining
# numpy.char.rjust() method
# importing numpy
import numpy as geek
# input array
in_arr = geek.array(['Numpy', 'Python', 'Pandas'])
print ("Input array:", in_arr)
# setting the width of each string to 8
width = 8
# output array
out_arr = geek.char.rjust(in_arr, width, fillchar ='*')
print ("Output right justified array:", out_arr)
輸出:
Input array: ['Numpy' 'Python' 'Pandas'] Output right justified array: ['***Numpy' '**Python' '**Pandas']
代碼3:
# Python program explaining
# numpy.char.rjust() method
# importing numpy
import numpy as geek
# input array
in_arr = geek.array(['1', '11', '111'])
print ("Input array:", in_arr)
# setting the width of each string to 5
width = 5
# output array
out_arr = geek.char.rjust(in_arr, width, fillchar ='-')
print ("Output right justified array:", out_arr)
輸出:
Input array: ['1' '11' '111'] Output right justified array: ['----1' '---11' '--111']
相關用法
- Numpy string less()用法及代碼示例
- Numpy string isnumeric()用法及代碼示例
- Numpy string index()用法及代碼示例
- Numpy string find()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Numpy string strip()用法及代碼示例
- Numpy string lstrip()用法及代碼示例
- Numpy string isdigit()用法及代碼示例
- Numpy string count()用法及代碼示例
- Numpy string rfind()用法及代碼示例
- Numpy string istitle()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Numpy string isupper()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string lower()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | rjust() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。