astype实现变量类型转换:
astype(type): returns a copy of the array converted to the specified type. a = a.astype('Float64') b = b.astype('Int32')
Python中与数据类型相关函数及属性有如下三个:type/dtype/astype
type() 返回参数的数据类型
dtype 返回数组中元素的数据类型
astype() 对数据类型进行转换
你可以使用 .astype() 方法在不同的数值类型之间相互转换。a.astype(int).dtype # 将 a 的数值类型从 float64 转换为 int,
在 Python 内建对象中,数组有三种形式:
列表:[1, 2, 3]
元组:(1, 2, 3, 4, 5)
字典:{A:1, B:2}
好了,除了介绍这个函数的内容,还给大家拓展了新的知识,大家可以结合在一起,更方便使用哦~