| [ Web Proxy ] |
| Viewing: https://numpy.org/doc/stable/reference/generated/../c-api/../generated/numpy.char.encode.html | [Back] [Original] |
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.
StringDType or str_ dtypeThe name of an encoding
Specifies how to handle encoding errors
See also
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')
array([b'', b'@@@@',
b''], dtype='|S7')
| Web Proxy Viewer | New URL | Original Page |