當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Numpy string zfill()用法及代碼示例


numpy.core.defchararray.zfill(arr, width) 是另一個在numpy中執行字符串操作的函數。對於數組中的每個元素,它返回用零填充左的數字字符串。左填充零的數目根據寬度而變化。

參數:
arr :str或unicode的數組輸入數組。
width:[int]填充零後字符串的最終寬度。

返回:[ndarray] str或unicode的輸出數組,具體取決於輸入類型。


代碼1:

# Python program explaining 
# numpy.char.zfill() method  
  
# importing numpy  
import numpy as geek 
  
# input array   
in_arr = geek.array(['Geeks', 'for', 'Geeks']) 
print ("Input array:", in_arr)  
  
# setting the width of each string to 8 
width = 8
  
# output array 
out_arr = geek.char.zfill(in_arr, width) 
print ("Output array:", out_arr) 
輸出:
Input array: ['Geeks' 'for' 'Geeks']
Output array: ['000Geeks' '00000for' '000Geeks']


代碼2:

# Python program explaining 
# numpy.char.zfill() 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.zfill(in_arr, width) 
print ("Output array:", out_arr) 
輸出:
Input array: ['1' '11' '111']
Output array: ['00001' '00011' '00111']


相關用法


注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | zfill() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。