Return the numeric string left-filled with zeros. A leading sign prefix (+/-) is handled by inserting the padding after the sign character rather than before.
StringDType, bytes_, or str_ dtype
Width of string to left-fill elements in a.
Output array of StringDType, bytes_ or str_ dtype, depending on input type
See also
>>> import numpy as np >>> np.strings.zfill(['1', '-1', '+1'], 3) array(['001', '-01', '+01'], dtype='<U3')
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.4/reference/generated/numpy.strings.zfill.html