{ } Raw JSON

bundles / numpy 2.4.4 / numpy / strings / encode

_ArrayFunctionDispatcher

numpy.strings:encode

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

Signature

def   encode ( a encoding = None errors = None )

Summary

Calls str.encode element-wise.

Extended Summary

The set of available codecs comes from the Python standard library, and may be extended at runtime. For more information, see the codecs module.

Parameters

a : array_like, with ``StringDType`` or ``str_`` dtype
encoding : str, optional

The name of an encoding

errors : str, optional

Specifies how to handle encoding errors

Returns

out : ndarray

Notes

The type of the result will depend on the encoding specified.

Examples

import numpy as np
a = np.array(['aAaAaA', '  aA  ', 'abBABba'])
np.strings.encode(a, encoding='cp037')

See also

str.encode

Aliases

  • numpy.char.encode