您现在的位置是:课程教程文章

python怎么把list变成array

2023-12-18 19:14课程教程文章 人已围观

将list转换成数组:

由于list中可以存放不同类型的元素,因此在转换成数组时,为了保证转换不出错,要检查类型是否一致,有数字且有字符的list转成array时会变成字符数组。

import numpy as np
# define list
array = np.asarray(list)
#the second method
array = np.array(list, dtype = int)

更多Python知识请关注Python视频教程栏目。

课程教程:python怎么把list变成array

上一篇:python中怎么交换列的顺序

下一篇:没有了

站点信息

  • 文章统计篇文章