NumPy

Previous topic

numpy.char.decode

Next topic

numpy.char.expandtabs

This is documentation for an old release of NumPy (version 1.18). Read this page in the documentation of the latest stable release (version 2.2).

numpy.char.encode

numpy.char.encode(a, encoding=None, errors=None)

Calls str.encode element-wise.

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
aarray_like of str or unicode
encodingstr, optional

The name of an encoding

errorsstr, optional

Specifies how to handle encoding errors

Returns
outndarray

See also

str.encode

Notes

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