numpy.chararray.astype

chararray.astype(t)

Copy of the array, cast to a specified type.

Parameters:

t : string or dtype

Typecode or data-type to which the array is cast.

Examples

>>> x = np.array([1, 2, 2.5])
>>> x
array([ 1. ,  2. ,  2.5])
>>> x.astype(int)
array([1, 2, 2])

Previous topic

numpy.chararray.argsort

Next topic

numpy.chararray.byteswap

This Page