python的dtype可用对象有哪些?

图片[1]-python的dtype可用对象有哪些?-uusu优素-乐高,模型,3d打印,编程

dtype() 返回数据元素的数据类型(int、float等)

type() 返回数据结构类型(list、dict、numpy.ndarray 等)

astype() 改变np.array中所有数据元素的数据类型。

能用dtype() 才能用 astype()。

由于 list、dict 等可以包含不同的数据类型,因此不可调用dtype()函数,但是其他类型都可以调用dtype。

示例:

a=np.array([0.213132,1.032123,2.000212])
a.dtype

运行结果:

dtype('float64')

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容