当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。