On this page
numpy.char.decode
- numpy.char.decode(a, encoding=None, errors=None)
- 
    Calls str.decodeelement-wise.The set of available codecs comes from the Python standard library, and may be extended at runtime. For more information, see the codecsmodule.- 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.decodeNotesThe type of the result will depend on the encoding specified. Examples>>> c = np.array(['aAaAaA', ' aA ', 'abBABba']) >>> c array(['aAaAaA', ' aA ', 'abBABba'], dtype='<U7') >>> np.char.encode(c, encoding='cp037') array(['\x81\xc1\x81\xc1\x81\xc1', '@@\x81\xc1@@', '\x81\x82\xc2\xc1\xc2\x82\x81'], dtype='|S7')
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.char.decode.html