numpy.core.defchararray.ljust(arr, width, fillchar=' ')
是另一個在numpy中執行字符串操作的函數。它返回一個數組,數組中的arr元素在長度寬度的字符串中左對齊。它使用以下命令填充每個數組元素的剩餘空間 fillchr
參數。如果 fillchr
不通過,則用空白填充剩餘空間。
參數:
arr :str或unicode的數組輸入數組。
width:每個字符串的最終寬度。
fillchar:填充剩餘空間的字符。
返回:str或unicode的輸出數組,具體取決於輸入類型。
代碼1:
# Python program explaining
# numpy.char.ljust() 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.ljust(in_arr, width)
print ("Output left justified array:", out_arr)
輸出:
Input array: ['Numpy' 'Python' 'Pandas'] Output left justified array: ['Numpy ' 'Python ' 'Pandas ']
代碼2:
# Python program explaining
# numpy.char.ljust() 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.ljust(in_arr, width, fillchar ='*')
print ("Output left justified array:", out_arr)
輸出:
Input array: ['Numpy' 'Python' 'Pandas'] Output left justified array: ['Numpy***' 'Python**' 'Pandas**']
代碼3:
# Python program explaining
# numpy.char.ljust() 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.ljust(in_arr, width, fillchar ='-')
print ("Output left justified array:", out_arr)
輸出:
Input array: ['1' '11' '111'] Output left justified array: ['1----' '11---' '111--']
相關用法
- Numpy string less()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Numpy string split()用法及代碼示例
- Numpy string equal()用法及代碼示例
- Numpy string upper()用法及代碼示例
- Numpy string join()用法及代碼示例
- Numpy string rsplit()用法及代碼示例
- Numpy string lower()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Numpy string rjust()用法及代碼示例
- Numpy string rfind()用法及代碼示例
- Numpy string title()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | ljust() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。