python中numpy的数据类型
时间: 2023-11-19 10:51:58 浏览: 120
python 的numpy
4星 · 用户满意度95%
在numpy中,数据类型被称为dtype,它是numpy的一个对象,用于描述数组中元素的数据类型。常见的numpy数据类型包括:int8、int16、int32、int64、float16、float32、float64、bool等。其中,int表示整数类型,float表示浮点数类型,bool表示布尔类型。
阅读全文
python 的numpy