type()dtype()astype() 用法

Posted alivinfer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了type()dtype()astype() 用法相关的知识,希望对你有一定的参考价值。

在 python 中,与数据类型相关函数及属性有三个:

名称 作用
type() 返回参数的数据类型
dtype() 返回数组中元素的数据类型
astype() 对数据类型进行转换

实例:

import numpy as np
a = np.arange(5)
type(a)
Out[4]: numpy.ndarray
a[0].dtype
Out[5]: dtype(‘int32‘)
a[0].astype(float)
Out[6]: 0.0

以上是关于type()dtype()astype() 用法的主要内容,如果未能解决你的问题,请参考以下文章

python中astype(np.float)的用法

python中astype(np.float)的用法

numpy随笔-astype

python的数据类型

astype 熊猫的错误​​?

AttributeError: Can only use .str accessor with string values, which use np.object_ dtype in pandas(