• 技术文章 >常见问题 >Python常见问题

    python的dtype可用对象有哪些?

     Ly Ly2020-06-13 15:26:12原创2983

    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')

    更多Python知识,请关注:Python自学网!!

    专题推荐:python
    上一篇:python倒排列是什么意思 下一篇:python定义int型变量吗?

    相关文章推荐

    • python怎么将字符串用空格分开• python导入dlib时出错解决方法• 怎样查看python环境是否安装正确• python倒排列是什么意思• python的运行文件在哪个文件夹

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网