python .astype,python类型转换astype

  python .astype,python类型转换astype

  我在浏览论坛的时候,看到有朋友问这个功能怎么用,底下的回答五花八门。想必提问的朋友和需要了解的人一定是陷入了云里雾里。于是,边肖系统地查询了这个功能的内容,整理出了最清晰简单的内容,希望对想了解的朋友有所帮助。来看看吧~

  astype实现变量类型转换:

  as type(type): returnsacopyofthearrayconvertedtospecifiedtype。

  a=a.astype(Float64 )

  Python中与数据类型相关函数及属性有如下三个:type/dtype/astype

  Type()返回参数的数据类型。

  Dtype返回数组中元素的数据类型。

  -spacing: 0px; font-size: 14px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(127, 127, 127);">astype() 对数据类型进行转换

  

你可以使用 .astype() 方法在不同的数值类型之间相互转换。a.astype(int).dtype # 将 a 的数值类型从 float64 转换为 int

  

Python 内建对象中,数组有三种形式:

  

  • 列表:[1, 2, 3]

      

  • 元组:(1, 2, 3, 4, 5)

      

  • 字典:{A:1, B:2}

      

好了,除了介绍这个函数的内容,还给大家拓展了新的知识,大家可以结合在一起,更方便使用哦~

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: