You are viewing an older version (2.4.3). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.4.3 / numpy / strings / zfill

_ArrayFunctionDispatcher

numpy.strings:zfill

source: /numpy/_core/strings.py :894

Signature

def   zfill ( a width )

Summary

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.

Parameters

a : array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtype
width : array_like, with any integer dtype

Width of string to left-fill elements in a.

Returns

out : ndarray

Output array of StringDType, bytes_ or str_ dtype, depending on input type

Examples

import numpy as np
np.strings.zfill(['1', '-1', '+1'], 3)

See also

str.zfill

Aliases

  • numpy.char.zfill