当前位置:   article > 正文

numpy()的类型-astype、dtype_numpy float astype str

numpy float astype str

查到一共有四个方法对于numpy数组:ndim、shape 、astype 、 dtype
ndim返回的是一个数,表示的是数组的维度;shape返回的是数组的size,dtype返回的是数组中值的类型;astype是强制类型转换:可以转换为 float64、int32、str。注意加引号,如果字符串数组表示的全是数字,也可以用astype转化为数值类型,如果非数字,str不能转换为float。

import numpy as np
a = np.array([[1,2,3], [1,2,3], [1,2,3]])
print(a.ndim)
print(a.shape)
print(a.dtype)
print(a.astype('str'))

"""
2
(3, 3)
int32
[['1' '2' '3']
 ['1' '2' '3']
 ['1' '2' '3']]
 """
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/730209
推荐阅读
相关标签
  

闽ICP备14008679号