码迷,mamicode.com
首页 > 编程语言 > 详细

python tolist()方法

时间:2018-05-15 21:06:20      阅读:810      评论:0      收藏:0      [点我收藏+]

标签:from   列表   list   bsp   nump   转换   imp   数组   lis   

将数组或者矩阵转换成列表,如下:

>>> from numpy import *
>>> a1 = [[1,2,3],[4,5,6]] #列表
>>> a2 = array(a1) #数组
>>> a2
array([[1, 2, 3],
       [4, 5, 6]])
>>> a3 = mat(a1) #矩阵
>>> a3
matrix([[1, 2, 3],
        [4, 5, 6]])
>>> a4 = a2.tolist()
>>> a4
[[1, 2, 3], [4, 5, 6]]
>>> a5 = a3.tolist()
>>> a5
[[1, 2, 3], [4, 5, 6]]
>>> a4 == a5
True

 

python tolist()方法

标签:from   列表   list   bsp   nump   转换   imp   数组   lis   

原文地址:https://www.cnblogs.com/Aaron12/p/9042687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!