numpy.char.zfill¶
-
numpy.char.
zfill
(a, width)¶ Return the numeric string left-filled with zeros
Calls str.zfill element-wise.
- Parameters
- aarray_like, {
str
, unicode} Input array.
- width
int
Width of string to left-fill elements in a.
- aarray_like, {
- Returns
See also